Fix for r89166: need self
This commit is contained in:
parent
b192c2637e
commit
5063ec99ac
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue