summaryrefslogtreecommitdiff
path: root/print_pages.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2005-08-01 18:42:06 +0000
committerMax Kremmel <xing@synapse.plus.com>2005-08-01 18:42:06 +0000
commitaa1fc688af3a1b78a73369d378b0c5b3cdbd9bee (patch)
tree096ac1d919c8fea068b59334c67457f636289121 /print_pages.php
parentcb5983c245afe264915abf248d87fb7a6498751c (diff)
downloadwiki-aa1fc688af3a1b78a73369d378b0c5b3cdbd9bee.tar.gz
wiki-aa1fc688af3a1b78a73369d378b0c5b3cdbd9bee.tar.bz2
wiki-aa1fc688af3a1b78a73369d378b0c5b3cdbd9bee.zip
merge recent changes with HEAD - R1 and HEAD are identical now
Diffstat (limited to 'print_pages.php')
-rw-r--r--print_pages.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/print_pages.php b/print_pages.php
index f0ea481..2de61e3 100644
--- a/print_pages.php
+++ b/print_pages.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_wiki/print_pages.php,v 1.2 2005/06/28 07:46:27 spiderr Exp $
+ * $Header: /cvsroot/bitweaver/_bit_wiki/print_pages.php,v 1.3 2005/08/01 18:42:04 squareing Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
- * $Id: print_pages.php,v 1.2 2005/06/28 07:46:27 spiderr Exp $
+ * $Id: print_pages.php,v 1.3 2005/08/01 18:42:04 squareing Exp $
* @package wiki
* @subpackage functions
*/
@@ -34,7 +34,7 @@ if (isset($_REQUEST["find"])) {
} else {
$find = '';
}
-$smarty->assign('find', $find);
+$gBitSmarty->assign('find', $find);
if (isset($_REQUEST["addpage"])) {
if (!in_array($_REQUEST["title"], $printpages)) {
$printpages[] = $_REQUEST["title"];
@@ -43,11 +43,11 @@ if (isset($_REQUEST["addpage"])) {
if (isset($_REQUEST["clearpages"])) {
$printpages = array();
}
-$smarty->assign('printpages', $printpages);
+$gBitSmarty->assign('printpages', $printpages);
$form_printpages = urlencode(serialize($printpages));
-$smarty->assign('form_printpages', $form_printpages);
+$gBitSmarty->assign('form_printpages', $form_printpages);
$pages = $wikilib->getList(0, -1, 'title_asc', $find);
-$smarty->assign_by_ref('pages', $pages["data"]);
+$gBitSmarty->assign_by_ref('pages', $pages["data"]);
// Display the template
$gBitSystem->display( 'bitpackage:wiki/print_pages.tpl');