Index: branches/5.3.x/units/links/links_event_handler.php =================================================================== diff -u -N -r15486 -r15672 --- branches/5.3.x/units/links/links_event_handler.php (.../links_event_handler.php) (revision 15486) +++ branches/5.3.x/units/links/links_event_handler.php (.../links_event_handler.php) (revision 15672) @@ -1,6 +1,6 @@ $object->GetField('Name'), ); - $email_sent = $this->Application->EmailEventUser('LINK.CONTACTFORM', $object->GetDBField('CreatedById'), $send_params); + $email_sent = $this->Application->emailUser('LINK.CONTACTFORM', $object->GetDBField('CreatedById'), $send_params); if ( $email_sent ) { $event->redirect = $this->Application->GetVar('success_template'); @@ -341,7 +341,7 @@ ); $event->setRedirectParams($redirect_params); - $this->Application->EmailEventAdmin('LINK.CONTACTFORM', null, $send_params); + $this->Application->emailAdmin('LINK.CONTACTFORM', null, $send_params); } else { $this->Application->SetVar('error_ContactFormEmail', 1); @@ -403,7 +403,7 @@ $object->SetDBField('ReciprocalLinkFound', $link_checked ? LINK_IS_RECIPROCAL : LINK_IS_NOT_RECIPROCAL); if (!$link_checked) { - $this->Application->EmailEventAdmin('LINK.RECIPROCAL.CHECK.FAILED'); + $this->Application->emailAdmin('LINK.RECIPROCAL.CHECK.FAILED'); } } } @@ -447,7 +447,7 @@ } else { $object->DeclineChanges(); - $this->Application->EmailEventAdmin('LINK.RECIPROCAL.CHECK.FAILED'); + $this->Application->emailAdmin('LINK.RECIPROCAL.CHECK.FAILED'); } }