From: Aryeh Gregor Date: Fri, 7 Sep 2007 01:55:33 +0000 (+0000) Subject: Use "public function", not the old "@public" nonsense. X-Git-Tag: 1.31.0-rc.0~51488 X-Git-Url: https://git.cyclocoop.org/?a=commitdiff_plain;h=85f2c1839f683fedf3b9c973c98354584dba2498;p=lhc%2Fweb%2Fwiklou.git Use "public function", not the old "@public" nonsense. --- diff --git a/includes/Parser.php b/includes/Parser.php index 3b3adb6fa9..5494d0630c 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -1160,9 +1160,8 @@ class Parser /** * Helper function for doAllQuotes() - * @public */ - function doQuotes( $text ) { + public function doQuotes( $text ) { $arr = preg_split( "/(''+)/", $text, -1, PREG_SPLIT_DELIM_CAPTURE ); if ( count( $arr ) == 1 ) return $text;