Index: trunk/extensions/Maps/includes/parserHooks/Maps_Finddestination.php |
— | — | @@ -152,7 +152,11 @@ |
153 | 153 | $canGeocode = MapsMapper::geocoderIsAvailable(); |
154 | 154 | |
155 | 155 | if ( $canGeocode ) { |
156 | | - $location = MapsGeocoders::attemptToGeocode( $parameters['location'] ); |
| 156 | + $location = MapsGeocoders::attemptToGeocode( |
| 157 | + $parameters['location'], |
| 158 | + $parameters['geoservice'], |
| 159 | + $parameters['mappingservice'] |
| 160 | + ); |
157 | 161 | } else { |
158 | 162 | $location = MapsCoordinateParser::parseCoordinates( $parameters['location'] ); |
159 | 163 | } |
Index: trunk/extensions/Maps/includes/parserHooks/Maps_Geocode.php |
— | — | @@ -143,7 +143,7 @@ |
144 | 144 | if ( MapsGeocoders::canGeocode() ) { |
145 | 145 | $geovalues = MapsGeocoders::attemptToGeocodeToString( |
146 | 146 | $parameters['location'], |
147 | | - $parameters['service'], |
| 147 | + $parameters['geoservice'], |
148 | 148 | $parameters['mappingservice'], |
149 | 149 | $parameters['allowcoordinates'], |
150 | 150 | $parameters['format'], |