|
From: Eloi G. <ada...@us...> - 2008-10-10 05:04:31
|
Update of /cvsroot/phpwebsite-comm/modules/article In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv30364 Modified Files: index_admin.php Log Message: Fixed Bug Report [ 2089717 ] - Articles awaiting approval all have the date Dec. 31, 1969. Index: index_admin.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/index_admin.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** index_admin.php 10 Oct 2008 04:27:40 -0000 1.20 --- index_admin.php 10 Oct 2008 05:04:23 -0000 1.21 *************** *** 412,416 **** $approval->setDisapproveUrl('index.php?module=article&op=disapprove_item'); $title = dgettext('article', 'Approval List for Article Manager'); ! $approval->columns = PHPWS_Article::get_summary_columns(); /* Don't pull up any rough drafts or deleteds */ $approval->addWhere('draft', 0); --- 412,416 ---- $approval->setDisapproveUrl('index.php?module=article&op=disapprove_item'); $title = dgettext('article', 'Approval List for Article Manager'); ! $approval->columns = array_merge(PHPWS_Article::get_summary_columns(), $approval->standard); /* Don't pull up any rough drafts or deleteds */ $approval->addWhere('draft', 0); |