summaryrefslogtreecommitdiff
path: root/print_pages.php
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2016-02-07 17:44:38 +0000
committerlsces <lester@lsces.co.uk>2016-02-07 17:44:38 +0000
commit48d38bcee6e51e54102c85cabb2f5b94a819a03c (patch)
tree3ad8d7370c6a0ffc301b407f56270e1bb0b4c89f /print_pages.php
parent5f2e82a1fb1803fcc79fd31bd0f318f3661d639c (diff)
downloadwiki-48d38bcee6e51e54102c85cabb2f5b94a819a03c.tar.gz
wiki-48d38bcee6e51e54102c85cabb2f5b94a819a03c.tar.bz2
wiki-48d38bcee6e51e54102c85cabb2f5b94a819a03c.zip
Move from Smarty2 to Smarty3 function style
Diffstat (limited to 'print_pages.php')
-rw-r--r--print_pages.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/print_pages.php b/print_pages.php
index 9f60676..4c27d5b 100644
--- a/print_pages.php
+++ b/print_pages.php
@@ -49,7 +49,7 @@ $listHash = array(
'find' => $find,
);
$pages = $gContent->getList( $listHash );
-$gBitSmarty->assign_by_ref('pages', $pages);
+$gBitSmarty->assignByRef('pages', $pages);
// Display the template
$gBitSystem->display( 'bitpackage:wiki/print_pages.tpl', NULL, array( 'display_mode' => 'display' ));