diff options
author | Antoine Musso <hashar@users.mediawiki.org> | 2004-09-02 23:28:24 +0000 |
---|---|---|
committer | Antoine Musso <hashar@users.mediawiki.org> | 2004-09-02 23:28:24 +0000 |
commit | 90155b8a9719ada6522a320a3315b4e698fdd970 (patch) | |
tree | 23ffd27058bd2b089b6d5c3b7c70ec3aea757f98 /includes/SpecialSearch.php | |
parent | 81e0b9d3c0c2bad288a3d73a38738070092db467 (diff) | |
download | mediawikicore-90155b8a9719ada6522a320a3315b4e698fdd970.tar.gz mediawikicore-90155b8a9719ada6522a320a3315b4e698fdd970.zip |
Changing comments layout preparing for generated documentation with Phpdocumentor
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/5032
Diffstat (limited to 'includes/SpecialSearch.php')
-rw-r--r-- | includes/SpecialSearch.php | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/includes/SpecialSearch.php b/includes/SpecialSearch.php index ad815a1309d6..acaa7295913d 100644 --- a/includes/SpecialSearch.php +++ b/includes/SpecialSearch.php @@ -1,6 +1,4 @@ <?php -# Token special page for marking search requests properly in the skin. -# # Copyright (C) 2004 Brion Vibber <brion@pobox.com> # http://www.mediawiki.org/ # @@ -19,6 +17,13 @@ # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # http://www.gnu.org/copyleft/gpl.html +/** + * Token special page for marking search requests properly in the skin. + */ + +/** + * constructor + */ function wfSpecialSearch( $par ) { global $wgOutput; require_once( 'SearchEngine.php' ); @@ -28,4 +33,4 @@ function wfSpecialSearch( $par ) { # Hey, it could be worse. It could be /bin/true on Solaris! -?>
\ No newline at end of file +?> |