summaryrefslogtreecommitdiff
path: root/modules/user/models
diff options
context:
space:
mode:
authorTristan Zur <tzur@webserver.ccwn.org>2016-08-15 21:12:21 +0200
committerTristan Zur <tzur@webserver.ccwn.org>2016-08-15 21:12:21 +0200
commitc257d5b4f1c8d589e1ab0d44f6e68451f1518e68 (patch)
treea08aea2d4a91b9f6e9737e84008e12e7a2f9d379 /modules/user/models
parent854ca75400a8bae53f5fc708c87c822b02bbcda8 (diff)
Introducing notification via XMPP
Diffstat (limited to 'modules/user/models')
-rw-r--r--modules/user/models/user.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/user/models/user.php b/modules/user/models/user.php
index af05c0c..0b75b81 100644
--- a/modules/user/models/user.php
+++ b/modules/user/models/user.php
@@ -80,6 +80,7 @@ class User_Model_Core extends ORM implements User_Definition {
"admin" => array("callbacks" => array(array($this, "valid_admin"))),
"email" => array("rules" => array("length[1,255]", "valid::email"),
"callbacks" => array(array($this, "valid_email"))),
+ "jabberid" => array("rules" => array("length[1,255]", "valid::email")),
"full_name" => array("rules" => array("length[0,255]")),
"locale" => array("rules" => array("length[2,10]")),
"name" => array("rules" => array("length[1,32]", "required"),