diff --git a/libraries/joomla/mail/mail.php b/libraries/joomla/mail/mail.php index 53d00241c4..e6fe039af6 100644 --- a/libraries/joomla/mail/mail.php +++ b/libraries/joomla/mail/mail.php @@ -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))); } } @@ -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)); } }