Index: branches/5.3.x/core/units/users/users_item.php =================================================================== diff -u -N -r15483 -r15677 --- branches/5.3.x/core/units/users/users_item.php (.../users_item.php) (revision 15483) +++ branches/5.3.x/core/units/users/users_item.php (.../users_item.php) (revision 15677) @@ -1,6 +1,6 @@ GetDBField('Status') ) { case STATUS_ACTIVE: $event_name = $this->Application->ConfigValue('User_Password_Auto') ? 'USER.VALIDATE' : 'USER.ADD'; - $this->Application->EmailEventAdmin($event_name); - $this->Application->EmailEventUser($event_name, $this->GetID()); + $this->Application->emailAdmin($event_name); + $this->Application->emailUser($event_name, $this->GetID()); break; case STATUS_PENDING: - $this->Application->EmailEventAdmin('USER.ADD.PENDING'); - $this->Application->EmailEventUser('USER.ADD.PENDING', $this->GetID()); + $this->Application->emailAdmin('USER.ADD.PENDING'); + $this->Application->emailUser('USER.ADD.PENDING', $this->GetID()); break; } }