Index: trunk/extensions/SemanticMaps/INSTALL |
— | — | @@ -1,4 +1,4 @@ |
2 | | -[[Semantic Maps 0.7]] |
| 2 | +[[Semantic Maps 0.7.1]] |
3 | 3 | |
4 | 4 | Make sure you have Semantic MediaWiki, Maps and Validator successfully installed before proceeding |
5 | 5 | withthe installation. Semantic Maps and Maps are always released together. This means you should |
Index: trunk/extensions/SemanticMaps/RELEASE-NOTES |
— | — | @@ -7,6 +7,11 @@ |
8 | 8 | http://www.mediawiki.org/wiki/Extension:Semantic_Maps/Version_history#Semantic_Maps_change_log |
9 | 9 | |
10 | 10 | |
| 11 | +=== Semantic Maps 0.7.1 === |
| 12 | +(2010-1x-xx) |
| 13 | + |
| 14 | +* |
| 15 | + |
11 | 16 | === Semantic Maps 0.7 === |
12 | 17 | (2010-10-15) |
13 | 18 | |
Index: trunk/extensions/SemanticMaps/includes/services/OpenLayers/SM_OpenLayersQP.php |
— | — | @@ -34,7 +34,7 @@ |
35 | 35 | wfMsg( 'maps-loading-map' ) |
36 | 36 | ); |
37 | 37 | |
38 | | - $layerItems = $this->service->createLayersStringAndLoadDependencies( $this->layers ); |
| 38 | + $this->service->addLayerDependencies( $this->layers[1] ); |
39 | 39 | |
40 | 40 | $langCode = $wgLang->getCode(); |
41 | 41 | |
— | — | @@ -44,7 +44,7 @@ |
45 | 45 | $this->centreLat, |
46 | 46 | $this->centreLon, |
47 | 47 | $this->zoom, |
48 | | - [$layerItems], |
| 48 | + {$this->layers[0]}, |
49 | 49 | [$this->controls], |
50 | 50 | $this->markerJs, |
51 | 51 | "$langCode" |
Index: trunk/extensions/SemanticMaps/includes/services/OpenLayers/SM_OpenLayersFormInput.php |
— | — | @@ -59,7 +59,7 @@ |
60 | 60 | wfMsg( 'maps-loading-map' ) |
61 | 61 | ); |
62 | 62 | |
63 | | - $layerItems = $this->service->createLayersStringAndLoadDependencies( $this->layers ); |
| 63 | + $this->service->addLayerDependencies( $this->layers[1] ); |
64 | 64 | |
65 | 65 | $langCode = $wgLang->getCode(); |
66 | 66 | |
— | — | @@ -72,7 +72,7 @@ |
73 | 73 | $this->zoom, |
74 | 74 | {$this->markerCoords['lat']}, |
75 | 75 | {$this->markerCoords['lon']}, |
76 | | - [$layerItems], |
| 76 | + {$this->layers[0]}, |
77 | 77 | [$this->controls], |
78 | 78 | "$langCode" |
79 | 79 | ); |