From: Eloi G. <ada...@us...> - 2004-09-23 17:44:54
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1793/class Modified Files: Forum.php Log Message: Fixed Bug Report [1033126] "Create new forum error". Index: Forum.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Forum.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** Forum.php 19 Sep 2004 06:37:00 -0000 1.30 --- Forum.php 23 Sep 2004 17:44:31 -0000 1.31 *************** *** 320,327 **** } ! if(isset($_POST['phpwsBB_moderator']) && is_array($_POST['phpwsBB_moderator'])) { $this->_moderators = implode(',', $_POST['phpwsBB_moderator']); ! } ! /* Hacks to get around some of Eloi's DDL */ --- 320,327 ---- } ! if(isset($_POST['phpwsBB_moderator']) && is_array($_POST['phpwsBB_moderator'])) $this->_moderators = implode(',', $_POST['phpwsBB_moderator']); ! else ! $this->_moderators = ''; /* Hacks to get around some of Eloi's DDL */ |