diff options
Diffstat (limited to 'core')
-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 edf6a6ac..546919b9 100644 --- a/core/libraries/I18n.php +++ b/core/libraries/I18n.php @@ -169,7 +169,7 @@ class I18n_Core { public static function get_message_key($message) { $as_string = is_array($message) ? implode('|', $message) : $message; - return md5($as_string, true); + return md5($as_string); } private function interpolate($locale, $string, $values) { |