From: Eloi G. <ada...@us...> - 2006-02-23 06:16:44
|
Update of /cvsroot/phpwsbb/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24050 Modified Files: index.php Log Message: Feature Request [ 1034602 ] "view posts since last visit" - Still need an icon for the button, though... Index: index.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/index.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** index.php 20 Feb 2006 05:08:51 -0000 1.16 --- index.php 23 Feb 2006 06:16:37 -0000 1.17 *************** *** 33,37 **** $CNT_phpwsbb['content'] = $_SESSION['translate']->it('Sorry, the bulletin board is currently down for maintenance.'); } else { ! /* This'll let the module work without those brackets */ if(isset($_REQUEST['PHPWS_MAN_ITEMS']) && is_numeric($_REQUEST['PHPWS_MAN_ITEMS'])) $_REQUEST['PHPWS_MAN_ITEMS']=array($_REQUEST['PHPWS_MAN_ITEMS']); --- 33,41 ---- $CNT_phpwsbb['content'] = $_SESSION['translate']->it('Sorry, the bulletin board is currently down for maintenance.'); } else { ! /* If the user just logged in, update their log times */ ! if ($_SESSION['OBJ_user']->username && !$_SESSION['PHPWSBB_Manager']->logged_in) ! $_SESSION['PHPWSBB_Manager'] = new PHPWSBB_Manager; ! ! /* This'll let the module work without those brackets */ if(isset($_REQUEST['PHPWS_MAN_ITEMS']) && is_numeric($_REQUEST['PHPWS_MAN_ITEMS'])) $_REQUEST['PHPWS_MAN_ITEMS']=array($_REQUEST['PHPWS_MAN_ITEMS']); |