Adding UI for site language selection and user language preference.

This commit is contained in:
Andy Staudacher
2009-02-10 05:37:42 +00:00
parent fe5240730a
commit 62f3724acb
10 changed files with 304 additions and 3 deletions
+2 -1
View File
@@ -24,7 +24,8 @@ class User_Model extends ORM {
"name" => "required|length[1,32]",
"full_name" => "length[0,255]",
"email" => "valid_email|length[1,255]",
"password" => "required|length[1,40]");
"password" => "required|length[1,40]",
"locale" => "length[2,10]");
public function __set($column, $value) {
switch ($column) {