Index: trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsQP.php |
— | — | @@ -46,7 +46,7 @@ |
47 | 47 | // TODO: refactor up like done in maps with display point |
48 | 48 | $markerItems = array(); |
49 | 49 | |
50 | | - foreach ( $this->m_locations as $location ) { |
| 50 | + foreach ( $this->mLocations as $location ) { |
51 | 51 | // Create a string containing the marker JS. |
52 | 52 | list( $lat, $lon, $title, $label, $icon ) = $location; |
53 | 53 | |
— | — | @@ -101,4 +101,4 @@ |
102 | 102 | return $params; |
103 | 103 | } |
104 | 104 | |
105 | | -} |
| 105 | +} |
\ No newline at end of file |
Index: trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersQP.php |
— | — | @@ -49,7 +49,7 @@ |
50 | 50 | // TODO: refactor up like done in maps with display point |
51 | 51 | $markerItems = array(); |
52 | 52 | |
53 | | - foreach ( $this->m_locations as $location ) { |
| 53 | + foreach ( $this->mLocations as $location ) { |
54 | 54 | // Create a string containing the marker JS . |
55 | 55 | list( $lat, $lon, $title, $label, $icon ) = $location; |
56 | 56 | |
— | — | @@ -100,4 +100,4 @@ |
101 | 101 | return $params; |
102 | 102 | } |
103 | 103 | |
104 | | -} |
| 104 | +} |
\ No newline at end of file |
Index: trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsQP.php |
— | — | @@ -66,7 +66,7 @@ |
67 | 67 | // TODO: refactor up like done in maps with display point |
68 | 68 | $markerItems = array(); |
69 | 69 | |
70 | | - foreach ( $this->m_locations as $location ) { |
| 70 | + foreach ( $this->mLocations as $location ) { |
71 | 71 | list( $lat, $lon, $title, $label, $icon ) = $location; |
72 | 72 | $markerItems[] = "getGMarkerData($lat, $lon, '$title', '$label', '$icon')"; |
73 | 73 | } |
— | — | @@ -123,4 +123,4 @@ |
124 | 124 | return $params; |
125 | 125 | } |
126 | 126 | |
127 | | -} |
| 127 | +} |
\ No newline at end of file |