Tom Hayakawa
tom_g3x****@users*****
2006年 12月 7日 (木) 16:31:15 JST
Index: xoops2jp/html/modules/legacy/lib/Mailer/Mailer.php diff -u xoops2jp/html/modules/legacy/lib/Mailer/Mailer.php:1.1.2.1 xoops2jp/html/modules/legacy/lib/Mailer/Mailer.php:1.1.2.2 --- xoops2jp/html/modules/legacy/lib/Mailer/Mailer.php:1.1.2.1 Wed Nov 15 23:56:08 2006 +++ xoops2jp/html/modules/legacy/lib/Mailer/Mailer.php Thu Dec 7 16:31:15 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: Mailer.php,v 1.1.2.1 2006/11/15 14:56:08 minahito Exp $ + * @version $Id: Mailer.php,v 1.1.2.2 2006/12/07 07:31:15 tom_g3x Exp $ */ /** @@ -28,7 +28,7 @@ $xoopsMailerConfig =& $handler->getConfigByCat(XOOPS_CONF_MAILER); $this->reset(); - if ($xoopsMailerConfig['form'] == '') { + if ($xoopsMailerConfig['from'] == '') { $this->From = $root->mContext->mXoopsConfig['adminmail']; } else { @@ -99,7 +99,7 @@ function convertLocal($text, $mime = false) { - $this->mConvertLocal->call(new XCube_Ref($text), $mine); + $this->mConvertLocal->call(new XCube_Ref($text), $mime); return $text; } }