diff options
-rw-r--r-- | core/libraries/I18n.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/libraries/I18n.php b/core/libraries/I18n.php index 38b036cb..2007bb07 100644 --- a/core/libraries/I18n.php +++ b/core/libraries/I18n.php @@ -98,7 +98,7 @@ class I18n_Core { // TODO: Handle locale specific number formatting. $keys = array(); foreach (array_keys($values) as $key) { - $keys[] = "{{$key}}"; + $keys[] = "{{" . $key . "}}"; } return str_replace($keys, array_values($values), $string); } |