Use "public function", not the old "@public" nonsense.
authorAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 7 Sep 2007 01:55:33 +0000 (01:55 +0000)
committerAryeh Gregor <simetrical@users.mediawiki.org>
Fri, 7 Sep 2007 01:55:33 +0000 (01:55 +0000)
includes/Parser.php

index 3b3adb6..5494d06 100644 (file)
@@ -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;