2007-04-03 22:34:07 +00:00
|
|
|
<?php
|
2015-05-20 21:36:13 +00:00
|
|
|
if ( function_exists( 'wfLoadExtension' ) ) {
|
|
|
|
wfLoadExtension( 'SyntaxHighlight_GeSHi' );
|
|
|
|
// Keep i18n globals so mergeMessageFileList.php doesn't break
|
|
|
|
$wgMessagesDirs['SyntaxHighlight_GeSHi'] = __DIR__ . '/i18n';
|
|
|
|
/* wfWarn(
|
2015-07-15 19:42:58 +00:00
|
|
|
'Deprecated PHP entry point used for SyntaxHighlight_GeSHi extension. '
|
|
|
|
'Please use wfLoadExtension instead, ' .
|
2015-05-20 21:36:13 +00:00
|
|
|
'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
|
|
|
|
); */
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
die( 'This version of the SyntaxHighlight_GeSHi extension requires MediaWiki 1.25+' );
|
2010-08-09 06:56:38 +00:00
|
|
|
}
|