Minahito
minah****@users*****
2006年 11月 5日 (日) 15:34:37 JST
Index: xoops2jp/html/class/xoopsform/form.php diff -u xoops2jp/html/class/xoopsform/form.php:1.2.8.4.2.2 xoops2jp/html/class/xoopsform/form.php:1.2.8.4.2.3 --- xoops2jp/html/class/xoopsform/form.php:1.2.8.4.2.2 Sun Oct 15 00:33:03 2006 +++ xoops2jp/html/class/xoopsform/form.php Sun Nov 5 15:34:37 2006 @@ -1,5 +1,5 @@ <?php -// $Id: form.php,v 1.2.8.4.2.2 2006/10/14 15:33:03 minahito Exp $ +// $Id: form.php,v 1.2.8.4.2.3 2006/11/05 06:34:37 minahito Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -190,6 +190,9 @@ $ret = array(); $count = count($this->_elements); for ($i = 0; $i < $count; $i++) { + if (!is_object($this->_elements[$i])) { + $ret[] = $this->_elements[$i]; + } if (!$this->_elements[$i]->isContainer()) { $ret[] =& $this->_elements[$i]; } else {