summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2013-07-12 23:21:08 +0100
committerlsces <lester@lsces.co.uk>2013-07-12 23:21:08 +0100
commit470c43ee3251ba9dfc88d7c5413712f21b5d1cc3 (patch)
tree0f6b9e4f76339402785a456499baa2dc4bb73137 /modules
parent546f173a0db2c87836294ab7f2236e1378ed9ad5 (diff)
downloadblogs-470c43ee3251ba9dfc88d7c5413712f21b5d1cc3.tar.gz
blogs-470c43ee3251ba9dfc88d7c5413712f21b5d1cc3.tar.bz2
blogs-470c43ee3251ba9dfc88d7c5413712f21b5d1cc3.zip
Closing bracket missmatch fixed
Diffstat (limited to 'modules')
-rw-r--r--modules/mod_last_blog_posts.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mod_last_blog_posts.php b/modules/mod_last_blog_posts.php
index fd93c31..7f42f10 100644
--- a/modules/mod_last_blog_posts.php
+++ b/modules/mod_last_blog_posts.php
@@ -63,6 +63,6 @@ $blogPosts = $blogPost->getList( $listHash );
$descriptionLength = ( !empty( $module_params['max_preview_length'] ) ? $module_params['max_preview_length'] : 500 );
-$_template->tpl_vars['blogPostsFormat'] = new Smarty_variable( (empty($module_params['format']);
+$_template->tpl_vars['blogPostsFormat'] = new Smarty_variable( (empty($module_params['format']) ) );
$_template->tpl_vars['descriptionLength'] = new Smarty_variable( $descriptionLength );
$_template->tpl_vars['modLastBlogPosts'] = new Smarty_variable( $blogPosts["data"] );