diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-01-31 10:21:11 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-01-31 10:21:11 +0000 |
| commit | 6130c1dd61a75a4501e3d938f15587a640c2cd63 (patch) | |
| tree | b9c0e71710c67d2554003d89a6e9d7170670bdfa /list.php | |
| parent | 45817cdb7b8cc29b6c2268fa7143c552451576a3 (diff) | |
| download | articles-6130c1dd61a75a4501e3d938f15587a640c2cd63.tar.gz articles-6130c1dd61a75a4501e3d938f15587a640c2cd63.tar.bz2 articles-6130c1dd61a75a4501e3d938f15587a640c2cd63.zip | |
fix various article submission related issues
Diffstat (limited to 'list.php')
| -rw-r--r-- | list.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.9 2005/10/30 19:48:40 lsces Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_articles/list.php,v 1.10 2006/01/31 10:21:11 squareing Exp $ * @package article * @subpackage functions */ @@ -91,7 +91,7 @@ if( !empty( $_REQUEST['action'] ) ) { if( empty( $_REQUEST['status_id'] ) || ( !$gBitUser->hasPermission( 'bit_p_view_submissions' ) && !$gBitUser->hasPermission( 'bit_p_admin_articles' ) ) ) { $_REQUEST['status_id'] = ARTICLE_STATUS_APPROVED; } -$listarticles = $article->getList( $_REQUEST ); +$listArticles = $article->getList( $_REQUEST ); $topics = BitArticleTopic::getTopicList(); $gBitSmarty->assign( 'topics', $topics ); @@ -100,7 +100,7 @@ $types = BitArticleType::getTypeList(); $gBitSmarty->assign( 'types', $types ); $gBitSmarty->assign( 'control', $_REQUEST["control"] ); -$gBitSmarty->assign( 'listpages', $listarticles["data"] ); +$gBitSmarty->assign( 'listpages', $listArticles["data"] ); // Display the template $gBitSystem->display( 'bitpackage:articles/list_articles.tpl', tra( "Articles" )); |
