summaryrefslogtreecommitdiff
path: root/list.php
diff options
context:
space:
mode:
authorSean Lee <seannerd@users.sourceforge.net>2006-02-20 04:56:10 +0000
committerSean Lee <seannerd@users.sourceforge.net>2006-02-20 04:56:10 +0000
commit5330bc5106f0335f10944efa1afde7232050fe40 (patch)
tree88624b1debb0db8fea9cf1c80f964728b8169d91 /list.php
parent44c943ddc9d2f70248150d651150efb29ed774f6 (diff)
downloadarticles-5330bc5106f0335f10944efa1afde7232050fe40.tar.gz
articles-5330bc5106f0335f10944efa1afde7232050fe40.tar.bz2
articles-5330bc5106f0335f10944efa1afde7232050fe40.zip
Merge recent changes to HEAD
Diffstat (limited to 'list.php')
-rw-r--r--list.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/list.php b/list.php
index e3ec34f..4cd207e 100644
--- a/list.php
+++ b/list.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.11 2006/02/06 21:34:07 lsces Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.12 2006/02/20 04:56:10 seannerd Exp $
* @package article
* @subpackage functions
*/
@@ -84,7 +84,7 @@ $article = new BitArticle();
// change the status of an article first
if( !empty( $_REQUEST['action'] ) ) {
if( !empty( $_REQUEST['article_id'] ) && !empty( $_REQUEST['set_status_id'] ) && $gBitUser->hasPermission( 'bit_p_approve_submission' ) ) {
- $article->setStatus( $_REQUEST['set_status_id'], $_REQUEST['article_id'] );
+ $article->setStatus( $_REQUEST['set_status_id'], $_REQUEST['article_id'], $_REQUEST['content_id'] );
}
}