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

Commit

Permalink
Merge commit 'b8294d0d4a973b20cb64d7b8fc02d8b002778d54' into HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
jools committed Feb 15, 2013
2 parents fb75c40 + b8294d0 commit c4894e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/joomla/mail/mail.php
Expand Up @@ -82,7 +82,7 @@ public function Send()
}
else
{
throw new RuntimeException(sprintf('%s::Send mail not enabled.'), get_class($this));
throw new RuntimeException(sprintf('%s::Send mail not enabled.', get_class($this)));
}
}

Expand All @@ -96,7 +96,7 @@ public function Send()
}
else
{
throw new RuntimeException(sprintf('%s::Send failed: "%s".'), get_class($this), $this->ErrorInfo);
throw new RuntimeException(sprintf('%s::Send failed: "%s".', get_class($this), $this->ErrorInfo));
}
}

Expand Down

0 comments on commit c4894e9

Please sign in to comment.