From 7158aa7ded17a3bb563cb44d4597524bab8caa22 Mon Sep 17 00:00:00 2001 From: Adam Magness Date: Mon, 22 Jan 2018 22:30:45 -0500 Subject: [PATCH] Update variable update based on error log --- src/Core/L10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/L10n.php b/src/Core/L10n.php index 88697a2a2c..be19d546d0 100644 --- a/src/Core/L10n.php +++ b/src/Core/L10n.php @@ -184,7 +184,7 @@ class L10n if (is_array($t)) { $plural_function = 'string_plural_select_' . str_replace('-', '_', $lang); if (function_exists($plural_function)) { - $plural_function = 'self::stringPluralSelectDefault'; + $plural_function = 'stringPluralSelectDefault'; } $i = $plural_function($count); $s = $t[$i];