From: Marcus Campbell Date: Mon, 5 Feb 2007 09:11:30 +0000 (+0000) Subject: trunk, branches/version-0.7: X-Git-Url: https://projects.mako.cc/source/scuttle/commitdiff_plain/7138fee281c6e11cfef6c669c4b3daab329f8850?hp=270046795d391a18ef69609b317febe8aec6facb trunk, branches/version-0.7: * Changed LC_MESSAGES to LC_ALL trunk: * Changed regex from eregi to preg_match in isValidEmail * Updated tables.sql * Added jQuery * Added prelim Atom feed template * Updated DB abstraction layer to latest phpBB code - Note: Breaks lots of code! * Updated config.inc.php.example --- diff --git a/functions.inc.php b/functions.inc.php index 63b789a..b22747e 100644 --- a/functions.inc.php +++ b/functions.inc.php @@ -5,7 +5,7 @@ require_once(dirname(__FILE__) .'/includes/utf8.php'); // Translation require_once(dirname(__FILE__) .'/includes/php-gettext/gettext.inc'); $domain = 'messages'; -T_setlocale(LC_MESSAGES, $locale); +T_setlocale(LC_ALL, $locale); T_bindtextdomain($domain, dirname(__FILE__) .'/locales'); T_bind_textdomain_codeset($domain, 'UTF-8'); T_textdomain($domain);