diff options
| author | lsces <lester@lsces.co.uk> | 2013-07-12 23:20:33 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2013-07-12 23:20:33 +0100 |
| commit | a88469351d9667b157ed36476d4681e9ab3ca58f (patch) | |
| tree | a501cebb558f62ff555e3b1b333470854723111b /modules | |
| parent | a8f0ab22383336b9107140818169d2df78f8ce2c (diff) | |
| download | articles-a88469351d9667b157ed36476d4681e9ab3ca58f.tar.gz articles-a88469351d9667b157ed36476d4681e9ab3ca58f.tar.bz2 articles-a88469351d9667b157ed36476d4681e9ab3ca58f.zip | |
Closing bracket missmatch fixed
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/mod_articles.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_articles.php b/modules/mod_articles.php index 796a64b..155bce5 100644 --- a/modules/mod_articles.php +++ b/modules/mod_articles.php @@ -51,7 +51,7 @@ if( ( !empty( $module_params['topic_id'] ) || !empty( $module_params['topic_name $_template->tpl_vars['moduleTitle'] = new Smarty_variable( "Articles" ); } -$_template->tpl_vars['params'] = new Smarty_variable( !empty( $moduleParams['params'] ); +$_template->tpl_vars['params'] = new Smarty_variable( !empty( $moduleParams['params'] ) ); $_template->tpl_vars['listtype'] = new Smarty_variable( ( isset($module_params['list_type']) && (strncasecmp($module_params['list_type'], 'u', 1) == 0) ) ? 'ul' : 'ol' ); $_template->tpl_vars['modArticles'] = new Smarty_variable( $articles ); ?> |
