From: Chad Horohoe Date: Fri, 3 Jun 2011 03:36:36 +0000 (+0000) Subject: Fix for r89166: need self X-Git-Tag: 1.31.0-rc.0~29758 X-Git-Url: http://git.cyclocoop.org/wiki/Target_page?a=commitdiff_plain;h=5063ec99ac110349465e5656e4164581e2e431a1;p=lhc%2Fweb%2Fwiklou.git Fix for r89166: need self --- diff --git a/includes/Init.php b/includes/Init.php index 660bb29711..ac55181700 100644 --- a/includes/Init.php +++ b/includes/Init.php @@ -72,7 +72,7 @@ class MWInit { * extensions directory. */ static function extInterpretedPath( $file ) { - return getExtensionsDirectory() . '/' . $file; + return self::getExtensionsDirectory() . '/' . $file; } /** @@ -84,7 +84,7 @@ class MWInit { if ( defined( 'MW_COMPILED' ) ) { return "extensions/$file"; } else { - return getExtensionsDirectory() . '/' . $file; + return self::getExtensionsDirectory() . '/' . $file; } }