* PHP 5.3 compatibility fix for wfRunHooks() called with no parameters An autoloaded 'Namespace' class alias is retained for compatibility with extensions which haven't updated to the new class name... however they too will break on PHP 5.3. Yay!
10 lines
No EOL
142 B
PHP
10 lines
No EOL
142 B
PHP
<?php
|
|
|
|
// For compatibility with extensions...
|
|
// Will still die on PHP 5.3, of course. :P
|
|
|
|
class Namespace extends MWNamespace {
|
|
// ..
|
|
}
|
|
|
|
?>
|