diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2011-06-22 11:28:20 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2011-06-22 11:28:20 +0200 |
commit | 9db190c7e736ec8d063187d4241b59feaf7dc2d1 (patch) | |
tree | 46d1a0dee7febef5c2d57a9f7b972be16a163b3d /extensions | |
parent | 78677c7bbdcc9739f6c10c75935898a20e1acd9e (diff) |
update to MediaWiki 1.17.0
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/extensions/README b/extensions/README index 85f4943b..0437af69 100644 --- a/extensions/README +++ b/extensions/README @@ -12,3 +12,16 @@ The extensions are available through svn at: You can find documentation and additional extensions on MediaWiki website: http://www.mediawiki.org/wiki/Category:Extensions + + +Please note that under POSIX systems (Linux...), parent of a symbolic path +refers to the link source, NOT to the target! You should check the env +variable MW_INSTALL_PATH in case the extension is not in the default location. + +The following code snippet let you override the default path: + + $IP = getenv( 'MW_INSTALL_PATH' ); + if( $IP === false ) { + $IP = dirname( __FILE__ ) . '/../..'; + } + require( "$IP/maintenance/Maintenance.php" ); // a MediaWiki core file |