aboutsummaryrefslogtreecommitdiffstats
path: root/about.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2007-10-08 23:46:09 +0000
committerrvelices <rv-github@modusoptimus.com>2007-10-08 23:46:09 +0000
commit98b07a4a7fa1baff52800f70066f311768904430 (patch)
tree4bc89e8017f5fced16a6de6d4c8b37639caccff8 /about.php
parent5132cc1f87025bd17d6bd90e5ac8ad73288bf482 (diff)
- some code refactoring before upgrade to utf (only cosmetic at this point...)
git-svn-id: http://piwigo.org/svn/trunk@2126 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'about.php')
-rw-r--r--about.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/about.php b/about.php
index 5ac379ce5..7b55c3354 100644
--- a/about.php
+++ b/about.php
@@ -57,7 +57,6 @@ include(PHPWG_ROOT_PATH.'include/page_header.php');
$template->set_filenames(
array(
'about'=>'about.tpl',
- 'about_content' => get_language_filepath('about.html')
)
);
if ( isset($lang['Theme: '.$user['theme']]) )
@@ -75,8 +74,8 @@ $template->assign_vars(
)
);
-$template->assign_var_from_handle('ABOUT_MESSAGE', 'about_content');
-
+$template->assign_var('ABOUT_MESSAGE', load_language('about.html','','',true) );
+
$template->parse('about');
include(PHPWG_ROOT_PATH.'include/page_tail.php');
?>