diff options
| author | lsces <lester@lsces.co.uk> | 2016-02-07 16:50:54 +0000 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2016-02-07 16:50:54 +0000 |
| commit | 253d0d0581fe8e610e4fef728259878d7a5d0d87 (patch) | |
| tree | 5b0a57bcefce95bc91dd2c4467f4bc4a198d04eb /admin | |
| parent | 427ceb129fd3bc0e41642e62fdcd89d0f3d5700c (diff) | |
| download | blogs-253d0d0581fe8e610e4fef728259878d7a5d0d87.tar.gz blogs-253d0d0581fe8e610e4fef728259878d7a5d0d87.tar.bz2 blogs-253d0d0581fe8e610e4fef728259878d7a5d0d87.zip | |
Move from Smarty2 to Smarty3 function style
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin_blogs_inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/admin_blogs_inc.php b/admin/admin_blogs_inc.php index fbadf9d..434816f 100644 --- a/admin/admin_blogs_inc.php +++ b/admin/admin_blogs_inc.php @@ -6,7 +6,7 @@ require_once( BLOGS_PKG_PATH.'BitBlog.php' ); $blog = new BitBlog(); $listHash['sort_mode'] = 'created_desc'; $blogList = $blog->getList( $listHash ); -$gBitSmarty->assign_by_ref( 'blogList', $blogList ); +$gBitSmarty->assignByRef( 'blogList', $blogList ); if( !empty( $_REQUEST["set_blog_home"] )) { $blog_home = @BitBase::verifyId( $_REQUEST['blog_home'] ) ? $_REQUEST['blog_home'] : NULL; |
