Minahito
minah****@users*****
2007年 2月 19日 (月) 15:54:44 JST
Index: xoops2jp/html/class/xoopsform/form.php diff -u xoops2jp/html/class/xoopsform/form.php:1.2.8.4.2.4 xoops2jp/html/class/xoopsform/form.php:1.2.8.4.2.4.2.1 --- xoops2jp/html/class/xoopsform/form.php:1.2.8.4.2.4 Sat Nov 11 18:34:14 2006 +++ xoops2jp/html/class/xoopsform/form.php Mon Feb 19 15:54:44 2007 @@ -1,5 +1,5 @@ <?php -// $Id: form.php,v 1.2.8.4.2.4 2006/11/11 09:34:14 minahito Exp $ +// $Id: form.php,v 1.2.8.4.2.4.2.1 2007/02/19 06:54:44 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -238,7 +238,8 @@ return $elements[$i]; } } - return false; + $ret = false; + return $ret; } /** @@ -284,7 +285,9 @@ if (is_object($ele) && method_exists($ele, 'getValue')) { return $ele->getValue($value); } - return; + + $ret = null; + return $ret; } /**