From 44cf22acfceef413ee19c54b2455391f9aa79d1f Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sun, 17 Oct 2010 18:51:00 +0000 Subject: [PATCH] Followup r69904, make call to getRandomString static in Parser->unserialiseHalfParsedText() --- includes/parser/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index b6d755f6ba..3a71a55608 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -5256,7 +5256,7 @@ class Parser { */ function unserialiseHalfParsedText( $data, $intPrefix = null ) { if ( !$intPrefix ) { - $intPrefix = $this->getRandomString(); + $intPrefix = self::getRandomString(); } # First, extract the strip state. -- 2.20.1