From f9524cb8e69dee059e5d7350e30565747d3d976e Mon Sep 17 00:00:00 2001 From: Steve Sanbeg Date: Tue, 12 Dec 2006 16:12:30 +0000 Subject: [PATCH] per Rob's comment, make call to createAssocArgs() more clearly static. --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index e87fa9497a..adf6e54c7a 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -3112,7 +3112,7 @@ class Parser $assocArgs = array(); } else { # Clean up argument array - $assocArgs = $this->createAssocArgs($args); + $assocArgs = self::createAssocArgs($args); # Add a new element to the templace recursion path $this->mTemplatePath[$part1] = 1; } -- 2.20.1