Index: trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsQP.php |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | addOnloadHook( |
42 | 42 | function() { |
43 | 43 | initializeYahooMap( |
44 | | - '$mapName', |
| 44 | + "$mapName", |
45 | 45 | $this->centreLat, |
46 | 46 | $this->centreLon, |
47 | 47 | $this->zoom, |
Index: trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsFormInput.php |
— | — | @@ -73,8 +73,8 @@ |
74 | 74 | addOnloadHook( |
75 | 75 | function() { |
76 | 76 | makeFormInputYahooMap( |
77 | | - '$mapName', |
78 | | - '$this->coordsFieldName', |
| 77 | + "$mapName", |
| 78 | + "$this->coordsFieldName", |
79 | 79 | $this->centreLat, |
80 | 80 | $this->centreLon, |
81 | 81 | $this->zoom, |
Index: trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersQP.php |
— | — | @@ -47,14 +47,14 @@ |
48 | 48 | addOnloadHook( |
49 | 49 | function() { |
50 | 50 | initOpenLayer( |
51 | | - '$mapName', |
| 51 | + "$mapName", |
52 | 52 | $this->centreLat, |
53 | 53 | $this->centreLon, |
54 | 54 | $this->zoom, |
55 | 55 | [$layerItems], |
56 | 56 | [$this->controls], |
57 | 57 | $this->markerJs, |
58 | | - '$langCode' |
| 58 | + "$langCode" |
59 | 59 | ); |
60 | 60 | } |
61 | 61 | ); |
Index: trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersFormInput.php |
— | — | @@ -67,8 +67,8 @@ |
68 | 68 | addOnloadHook( |
69 | 69 | function() { |
70 | 70 | makeFormInputOpenLayer( |
71 | | - '$mapName', |
72 | | - '$this->coordsFieldName', |
| 71 | + "$mapName", |
| 72 | + "$this->coordsFieldName", |
73 | 73 | $this->centreLat, |
74 | 74 | $this->centreLon, |
75 | 75 | $this->zoom, |
— | — | @@ -76,7 +76,7 @@ |
77 | 77 | {$this->markerCoords['lon']}, |
78 | 78 | [$layerItems], |
79 | 79 | [$this->controls], |
80 | | - '$langCode' |
| 80 | + "$langCode" |
81 | 81 | ); |
82 | 82 | } |
83 | 83 | ); |
Index: trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsQP.php |
— | — | @@ -60,7 +60,7 @@ |
61 | 61 | $this->service->addDependency( Html::inlineScript( <<<EOT |
62 | 62 | addOnloadHook( |
63 | 63 | function() { |
64 | | - initializeGoogleMap('$mapName', |
| 64 | + initializeGoogleMap("$mapName", |
65 | 65 | { |
66 | 66 | lat: $this->centreLat, |
67 | 67 | lon: $this->centreLon, |
Index: trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsFormInput.php |
— | — | @@ -83,8 +83,8 @@ |
84 | 84 | addOnloadHook( |
85 | 85 | function() { |
86 | 86 | makeGoogleMapFormInput( |
87 | | - '$mapName', |
88 | | - '$this->coordsFieldName', |
| 87 | + "$mapName", |
| 88 | + "$this->coordsFieldName", |
89 | 89 | { |
90 | 90 | lat: $this->centreLat, |
91 | 91 | lon: $this->centreLon, |