|
From: Steven L. <jyd...@us...> - 2005-03-21 17:23:28
|
Update of /cvsroot/phpwsbb/phpwsbb/class In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2578/class Modified Files: Forum.php Runtime.php Log Message: + fixed xhmtl well formed issue + forum block only shows up with content Index: Forum.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Forum.php,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** Forum.php 4 Mar 2005 18:19:42 -0000 1.37 --- Forum.php 21 Mar 2005 17:23:10 -0000 1.38 *************** *** 364,368 **** if($_SESSION['OBJ_fatcat']) /* Got rid of the brackets so that the link isn't broken in email messages */ ! $_SESSION['OBJ_fatcat']->saveSelect($this->getLabel(), 'index.php?module=phpwsbb&PHPWSBB_MAN_OP=viewforum&PHPWS_MAN_ITEMS=' . $this->getId(), $this->getId()); $GLOBALS['CNT_phpwsbb']['content'] .= $_SESSION['PHPWSBB_Manager']->_menu($this) . $_SESSION['translate']->it('Your forum was successfully saved.') . "<br />"; --- 364,368 ---- if($_SESSION['OBJ_fatcat']) /* Got rid of the brackets so that the link isn't broken in email messages */ ! $_SESSION['OBJ_fatcat']->saveSelect($this->getLabel(), 'index.php?module=phpwsbb&PHPWSBB_MAN_OP=viewforum&PHPWS_MAN_ITEMS=' . $this->getId(), $this->getId()); $GLOBALS['CNT_phpwsbb']['content'] .= $_SESSION['PHPWSBB_Manager']->_menu($this) . $_SESSION['translate']->it('Your forum was successfully saved.') . "<br />"; Index: Runtime.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/class/Runtime.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Runtime.php 4 Jan 2005 19:06:59 -0000 1.15 --- Runtime.php 21 Mar 2005 17:23:11 -0000 1.16 *************** *** 62,70 **** } $block .= '</ul>'; } ! ! $GLOBALS['CNT_phpwsbb_forumsblock']['title'] = $blocktitle; ! $GLOBALS['CNT_phpwsbb_forumsblock']['content'] = $block; ! } }// END FUNC showForumsBlock --- 62,69 ---- } $block .= '</ul>'; + $GLOBALS['CNT_phpwsbb_forumsblock']['title'] = $blocktitle; + $GLOBALS['CNT_phpwsbb_forumsblock']['content'] = $block; } ! } }// END FUNC showForumsBlock |