diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2005-08-01 18:42:06 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2005-08-01 18:42:06 +0000 |
| commit | aa1fc688af3a1b78a73369d378b0c5b3cdbd9bee (patch) | |
| tree | 096ac1d919c8fea068b59334c67457f636289121 /print_multi_pages.php | |
| parent | cb5983c245afe264915abf248d87fb7a6498751c (diff) | |
| download | wiki-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_multi_pages.php')
| -rw-r--r-- | print_multi_pages.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/print_multi_pages.php b/print_multi_pages.php index 1a50067..48fcaee 100644 --- a/print_multi_pages.php +++ b/print_multi_pages.php @@ -1,6 +1,6 @@ <?php /** - * $Header: /cvsroot/bitweaver/_bit_wiki/print_multi_pages.php,v 1.2 2005/06/28 07:46:27 spiderr Exp $ + * $Header: /cvsroot/bitweaver/_bit_wiki/print_multi_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_multi_pages.php,v 1.2 2005/06/28 07:46:27 spiderr Exp $ + * $Id: print_multi_pages.php,v 1.3 2005/08/01 18:42:04 squareing Exp $ * @package wiki * @subpackage functions */ @@ -19,12 +19,12 @@ require_once( '../bit_setup_inc.php' ); require_once( WIKI_PKG_PATH.'BitPage.php' ); if ($feature_wiki_multiprint != 'y') { - $smarty->assign('msg', tra("This feature is disabled").": feature_wiki_multiprint"); + $gBitSmarty->assign('msg', tra("This feature is disabled").": feature_wiki_multiprint"); $gBitSystem->display( 'error.tpl' ); die; } if (!isset($_REQUEST["printpages"])) { - $smarty->assign('msg', tra("No pages indicated")); + $gBitSmarty->assign('msg', tra("No pages indicated")); $gBitSystem->display( 'error.tpl' ); die; } else { @@ -43,8 +43,8 @@ if (isset($_REQUEST["print"])) { } } } -$smarty->assign_by_ref('pages', $pages); +$gBitSmarty->assign_by_ref('pages', $pages); // Display the template -$smarty->display("bitpackage:wiki/print_multi_pages.tpl"); +$gBitSmarty->display("bitpackage:wiki/print_multi_pages.tpl"); ?> |
