r67948 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r67947‎ | r67948 | r67949 >
Date:14:11, 13 June 2010
Author:jeroendedauw
Status:deferred
Tags:
Comment:
Fixed error from r67947
Modified paths:
  • /trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsFormInput.php (modified) (history)
  • /trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsQP.php (modified) (history)
  • /trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersFormInput.php (modified) (history)
  • /trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersQP.php (modified) (history)
  • /trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsFormInput.php (modified) (history)
  • /trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsQP.php (modified) (history)

Diff [purge]

Index: trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsQP.php
@@ -35,7 +35,7 @@
3636 protected function doMapServiceLoad() {
3737 global $egYahooMapsOnThisPage, $wgParser;
3838
39 - MapsYahooMaps::addDependencies( $wgParser );
 39+ $this->mService->addDependencies( $wgParser );
4040 $egYahooMapsOnThisPage++;
4141
4242 $this->elementNr = $egYahooMapsOnThisPage;
Index: trunk/extensions/SemanticMaps/Services/YahooMaps/SM_YahooMapsFormInput.php
@@ -38,7 +38,7 @@
3939 global $wgOut;
4040 global $smgScriptPath, $smgYahooFormsOnThisPage, $smgStyleVersion, $egMapsJsExt;
4141
42 - MapsYahooMaps::addDependencies( $wgOut );
 42+ $this->mService->addDependencies( $wgOut );
4343
4444 if ( empty( $smgYahooFormsOnThisPage ) ) {
4545 $smgYahooFormsOnThisPage = 0;
Index: trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersQP.php
@@ -37,7 +37,7 @@
3838 protected function doMapServiceLoad() {
3939 global $wgParser, $egOpenLayersOnThisPage;
4040
41 - MapsOpenLayers::addDependencies( $wgParser);
 41+ $this->mService->addDependencies( $wgParser);
4242 $egOpenLayersOnThisPage++;
4343
4444 $this->elementNr = $egOpenLayersOnThisPage;
Index: trunk/extensions/SemanticMaps/Services/OpenLayers/SM_OpenLayersFormInput.php
@@ -37,7 +37,7 @@
3838 global $wgOut;
3939 global $smgScriptPath, $smgOLFormsOnThisPage, $smgStyleVersion, $egMapsJsExt;
4040
41 - MapsOpenLayers::addDependencies( $wgOut );
 41+ $this->mService->addDependencies( $wgOut );
4242
4343 if ( empty( $smgOLFormsOnThisPage ) ) {
4444 $smgOLFormsOnThisPage = 0;
Index: trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsQP.php
@@ -49,7 +49,7 @@
5050
5151 if ( empty( $egGoogleMapsOnThisPage ) ) {
5252 $egGoogleMapsOnThisPage = 0;
53 - MapsGoogleMaps::addDependencies( $wgParser );
 53+ $this->mService->addDependencies( $wgParser );
5454 }
5555
5656 $egGoogleMapsOnThisPage++;
Index: trunk/extensions/SemanticMaps/Services/GoogleMaps/SM_GoogleMapsFormInput.php
@@ -41,7 +41,7 @@
4242 global $wgOut;
4343 global $smgScriptPath, $smgGoogleFormsOnThisPage, $smgStyleVersion, $egMapsJsExt;
4444
45 - MapsGoogleMaps::addDependencies( $wgOut );
 45+ $this->mService->addDependencies( $wgOut );
4646
4747 if ( empty( $smgGoogleFormsOnThisPage ) ) {
4848 $smgGoogleFormsOnThisPage = 0;

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r67947Changes for 0.6.3 - Follow up to r67904jeroendedauw14:09, 13 June 2010

Status & tagging log