summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-09-26 07:15:09 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-09-26 07:15:09 +0000
commit8ffbb4cd2cd72377fa80519605fd3e0a1af404a0 (patch)
tree29894eca1728ebb7d4fd6111262ccbc5eece8675 /modules
parent63e137e18116d8268e2291eae16918ffaa0367c3 (diff)
downloadarticles-8ffbb4cd2cd72377fa80519605fd3e0a1af404a0.tar.gz
articles-8ffbb4cd2cd72377fa80519605fd3e0a1af404a0.tar.bz2
articles-8ffbb4cd2cd72377fa80519605fd3e0a1af404a0.zip
$smarty -> $gBitSmarty
Diffstat (limited to 'modules')
-rw-r--r--modules/mod_articles.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mod_articles.php b/modules/mod_articles.php
index ab989e3..6edaff1 100644
--- a/modules/mod_articles.php
+++ b/modules/mod_articles.php
@@ -1,5 +1,5 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_articles/modules/mod_articles.php,v 1.5 2005/09/01 09:43:33 squareing Exp $
+// $Header: /cvsroot/bitweaver/_bit_articles/modules/mod_articles.php,v 1.6 2005/09/26 07:15:08 squareing Exp $
include_once( ARTICLES_PKG_PATH . 'BitArticle.php' );
global $module_rows, $module_params, $module_title;
@@ -29,5 +29,5 @@ $getHash['max_records'] = !empty( $module_rows ) ? $module_rows : $gBitSystem-
$getHash['topic'] = !empty( $module_params['topic'] ) ? $module_params['topic'] : NULL;
$articles = $articles->getList( $getHash );
-$smarty->assign( 'modArticles', $articles['data'] );
+$gBitSmarty->assign( 'modArticles', $articles['data'] );
?>