Index: branches/5.2.x/core/units/users/users_item.php =================================================================== diff -u -N -r15454 -r15608 --- branches/5.2.x/core/units/users/users_item.php (.../users_item.php) (revision 15454) +++ branches/5.2.x/core/units/users/users_item.php (.../users_item.php) (revision 15608) @@ -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; } }