From 85f2c1839f683fedf3b9c973c98354584dba2498 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Fri, 7 Sep 2007 01:55:33 +0000 Subject: [PATCH] Use "public function", not the old "@public" nonsense. --- includes/Parser.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; -- 2.20.1