From: <go...@us...> - 2003-01-06 09:38:29
|
Update of /cvsroot/xoops/xoops2/class/xoopsform In directory sc8-pr-cvs1:/tmp/cvs-serv13265/class/xoopsform Modified Files: formelementtray.php Log Message: Fixed bug 326 Index: formelementtray.php =================================================================== RCS file: /cvsroot/xoops/xoops2/class/xoopsform/formelementtray.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** formelementtray.php 2 Jan 2003 15:32:06 -0000 1.1 --- formelementtray.php 6 Jan 2003 09:38:26 -0000 1.2 *************** *** 68,71 **** --- 68,74 ---- } $ret .= $ele->getCaption()." ".$ele->render()."\n"; + if ( trim($ret) == ' ' ) { + $ret = ''; + } $count++; } |