CC-4191: Password Reset: Reset link should be updated after default port is changed

-done
This commit is contained in:
denise 2012-08-16 18:17:43 -04:00
parent 6b841a0fc4
commit e57885c934
1 changed files with 2 additions and 1 deletions

View File

@ -27,9 +27,10 @@ class Application_Model_Auth
$e_link_protocol = empty($_SERVER['HTTPS']) ? "http" : "https";
$e_link_base = $_SERVER['SERVER_NAME'];
$e_link_port = $_SERVER['SERVER_PORT'];
$e_link_path = $view->url(array('user_id' => $user->getDbId(), 'token' => $token), 'password-change');
$message = "Click this link: {$e_link_protocol}://{$e_link_base}{$e_link_path}";
$message = "Click this link: {$e_link_protocol}://{$e_link_base}:{$e_link_port}{$e_link_path}";
$success = Application_Model_Email::send('Airtime Password Reset', $message, $user->getDbEmail());