From 0c0ab6d700167e3a8c4f9734233ff70738b12e18 Mon Sep 17 00:00:00 2001 From: plegall Date: Tue, 27 Sep 2005 21:57:14 +0000 Subject: - bug 168 fixed: crash when language file does not exists. Constant PHPWG_DEFAULT_LANGUAGE added. New function get_language_filepath always used to find language files. git-svn-id: http://piwigo.org/svn/trunk@879 68402e56-0260-453c-a942-63ccdbb3a9ee --- popuphelp.php | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) (limited to 'popuphelp.php') diff --git a/popuphelp.php b/popuphelp.php index 97ae7532a..0c5c205da 100644 --- a/popuphelp.php +++ b/popuphelp.php @@ -32,23 +32,15 @@ define('PHPWG_ROOT_PATH','./'); include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); -// language files -$user_langdir = PHPWG_ROOT_PATH.'language/'.$user['language']; -$conf_langdir = PHPWG_ROOT_PATH.'language/'.$conf['default_language']; - -if (file_exists($user_langdir.'/help/'.$_GET['page'].'.html')) -{ - $html_file = $user_langdir.'/help/'.$_GET['page'].'.html'; -} -else -{ - $html_file = $conf_langdir.'/help/'.$_GET['page'].'.html'; -} - $page['body_id'] = 'thePopuphelpPage'; $page['gallery_title'] = $title = l10n('PhpWebGallery Help'); include(PHPWG_ROOT_PATH.'include/page_header.php'); -$template->set_filenames(array('help_content' => $html_file)); + +$template->set_filenames( + array( + 'help_content' => get_language_filepath('help/'.$_GET['page'].'.html') + ) + ); $template->set_filenames(array('popuphelp' => 'popuphelp.tpl')); -- cgit v1.2.3