aboutsummaryrefslogtreecommitdiffstats
path: root/popuphelp.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2008-02-28 02:41:48 +0000
committerrvelices <rv-github@modusoptimus.com>2008-02-28 02:41:48 +0000
commitc73923204927f406d492491398980d3aa429c4eb (patch)
tree717f79ecab01b8d97c359c27406be6dd26ff8193 /popuphelp.php
parent618158aca4d99fe522b0f54d547442f17a5db148 (diff)
- migrate many templates to smarty
git-svn-id: http://piwigo.org/svn/trunk@2223 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'popuphelp.php')
-rw-r--r--popuphelp.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/popuphelp.php b/popuphelp.php
index 4c8ee5895..17a3f2db1 100644
--- a/popuphelp.php
+++ b/popuphelp.php
@@ -2,7 +2,7 @@
// +-----------------------------------------------------------------------+
// | PhpWebGallery - a PHP based picture gallery |
// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
-// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
+// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net |
// +-----------------------------------------------------------------------+
// | file : $Id$
// | last update : $Date$
@@ -64,9 +64,9 @@ else
die('Hacking attempt!');
}
-$template->set_filenames(array('popuphelp' => 'popuphelp.tpl'));
+$template->set_filename('popuphelp','popuphelp.tpl');
-$template->assign_vars(
+$template->assign(
array
(
'HELP_CONTENT' => $help_content
@@ -76,7 +76,7 @@ $template->assign_vars(
// | html code display |
// +-----------------------------------------------------------------------+
-$template->parse('popuphelp');
+$template->pparse('popuphelp');
include(PHPWG_ROOT_PATH.'include/page_tail.php');