Some tweaks:

* Remove ending ?> tag in NamespaceCompat.php
* Fix hook name in docs/hooks.txt
This commit is contained in:
Alexandre Emsenhuber 2008-03-22 14:55:29 +00:00
parent 9764df8e60
commit ffb9afb2af
3 changed files with 7 additions and 8 deletions

View file

@ -1036,7 +1036,7 @@ $term: string of search term
$titleMatches: empty or SearchResultSet object
$textMatches: empty or SearchResultSet object
'SpecialSearchResults': called before search result display when there are no matches
'SpecialSearchNoResults': called before search result display when there are no matches
$term: string of search term
'SpecialVersionExtensionTypes': called when generating the extensions credits, use this to change the tables headers

View file

@ -277,7 +277,7 @@ class ImageGallery
}
//TODO
//$ul = $sk->makeLink( $wgContLang->getNsText( Namespace::getUser() ) . ":{$ut}", $ut );
//$ul = $sk->makeLink( $wgContLang->getNsText( MWNamespace::getUser() ) . ":{$ut}", $ut );
if( $this->mShowBytes ) {
if( $img ) {

View file

@ -1,10 +1,9 @@
<?php
// For compatibility with extensions...
// Will still die on PHP 5.3, of course. :P
/**
* For compatibility with extensions...
* Will still die on PHP 5.3, of course. :P
*/
class Namespace extends MWNamespace {
// ..
}
?>
}