X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=DataObjects%2FCore_person.php;h=b45eef49f091484a895f58f34c5dfc248ac6fbe6;hp=a6c9b705457f4c09c02b5a2872d70e7e0a49fdc7;hb=HEAD;hpb=efe502cc0f2a369e00236fcd2eefe66d39d26dcb diff --git a/DataObjects/Core_person.php b/DataObjects/Core_person.php index a6c9b705..4208198e 100644 --- a/DataObjects/Core_person.php +++ b/DataObjects/Core_person.php @@ -1455,7 +1455,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $pp = DB_DataObject::factory('core_person'); $pp->whereAdd('LOWER(email) = "' . $pp->escape(strtolower(trim($this->email))) . '"'); if ($pp->count()){ - $roo->jerror("NOTIFY-DUPE-EMAIL", "that email already exists in the database"); + $roo->jerror("NOTICE-DUPE-EMAIL", "that email already exists in the database"); } @@ -1660,7 +1660,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $pp->whereAdd('LOWER(email) = "' . $pp->escape(strtolower(trim($this->email))) . '"'); $pp->whereAdd('id != ' . $old->id); if ($pp->count()){ - $roo->jerror("NOTIFY-DUPE-EMAIL", "that email already exists in the database"); + $roo->jerror("NOTICE-DUPE-EMAIL", "that email already exists in the database"); } } }