Skip to content
This repository has been archived by the owner on Nov 13, 2018. It is now read-only.

Commit

Permalink
Merge pull request #843 from mitchell852/master
Browse files Browse the repository at this point in the history
Fixes #839
  • Loading branch information
Dewayne Richardson committed Dec 7, 2015
2 parents b5a98b1 + 2f59ae8 commit c2dd078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions traffic_ops/app/lib/MojoPlugins/Email.pm
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ sub register {

if ( defined($email_to) ) {
if ( defined($portal_email_from) ) {
$self->mail(
$rc = $self->mail(
subject => $instance_name . " Password Reset Request",
from => $portal_email_from,
to => $email_to,
Expand All @@ -64,7 +64,7 @@ sub register {
);
}
else {
$self->mail(
$rc = $self->mail(
subject => $instance_name . " Password Reset Request",
to => $email_to,
template => 'user/reset_password',
Expand Down

0 comments on commit c2dd078

Please sign in to comment.