wiki.techinc.nl/includes/NamespaceCompat.php
Brion Vibber deb2045611 * (bug 12294) Namespace class renamed to MWNamespace for PHP 5.3 compatibility
* 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!
2008-03-21 23:13:34 +00:00

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 {
// ..
}
?>