diff options
author | laurent.duretz <laurent.duretz@piwigo.org> | 2010-03-30 08:30:41 +0000 |
---|---|---|
committer | laurent.duretz <laurent.duretz@piwigo.org> | 2010-03-30 08:30:41 +0000 |
commit | 463d6f5f2f5ca21c955115aeb807b5f5fee534f7 (patch) | |
tree | 508dd58090a8264c6ed6aaf362d375df0bf51171 | |
parent | 1df031518b578d7bd13da463ce745d370a80f84f (diff) |
Issue 1521 : get_absolute_root_url() missing in section_init.inc.php
git-svn-id: http://piwigo.org/svn/trunk@5469 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/section_init.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/section_init.inc.php b/include/section_init.inc.php index 10a6da258..f7fae1228 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -237,7 +237,7 @@ if ('categories' == $page['section']) } else { - $page['title'] = '<a href="'.PHPWG_ROOT_PATH.$conf['home_page'].'">'.l10n('Home').'</a>'; + $page['title'] = '<a href="'.get_absolute_root_url().$conf['home_page'].'">'.l10n('Home').'</a>'; } if |