From 8bba897a46e773c0155419abc7b0d9a1fb5fd7aa Mon Sep 17 00:00:00 2001 From: Andy Staudacher Date: Mon, 23 Feb 2009 06:33:10 +0000 Subject: Changing from binary(16) to char(32) as translation message key. Although less efficient as a storage / transmission / comparison format, it's friendlier on the eyes and universally supported. --- core/libraries/I18n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') 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) { -- cgit v1.2.3