This commit is contained in:
Tomas V.V.Cox 2001-08-09 07:52:29 +00:00
parent 9551824584
commit 02545f0503

View File

@ -42,7 +42,7 @@ class Mail extends PEAR {
*/
function factory($driver, $params = array())
{
$driver = strtolower($driver);
$driver = strtolower($driver);
if (@include_once 'Mail/' . $driver . '.php') {
$class = 'Mail_' . $driver;
return new $class($params);
@ -52,7 +52,7 @@ class Mail extends PEAR {
}
/**
/**
* Implements Mail::send() function using php's built-in mail()
* command.
*