diff options
author | laurent.duretz <laurent.duretz@piwigo.org> | 2010-03-29 17:05:38 +0000 |
---|---|---|
committer | laurent.duretz <laurent.duretz@piwigo.org> | 2010-03-29 17:05:38 +0000 |
commit | a37f1fbae1309c44531f36e0109b1f2bfecf2539 (patch) | |
tree | b2c069cf144b4383abd3c539e5178cfbacb42715 /include/functions_html.inc.php | |
parent | 6024107c9ceefcb45e0ab1f17d16f3472a2d5161 (diff) |
Issue 1521 : picture.tpl updated to avoid double home link, picture.php updated because tpl update, functions_html.inc.php updated to work with question_mark_in_urls = false
git-svn-id: http://piwigo.org/svn/trunk@5451 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/functions_html.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index 440d028c7..1cabb3acd 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -40,7 +40,7 @@ function get_cat_display_name($cat_informations, { global $conf; - $output = '<a href="'.PHPWG_ROOT_PATH.$conf['home_page'].'">'.l10n('Home').'</a>'; + $output = '<a href="'.get_absolute_root_url().$conf['home_page'].'">'.l10n('Home').'</a>'; foreach ($cat_informations as $cat) { |