aboutsummaryrefslogtreecommitdiffstats
path: root/include/page_header.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2007-11-01 23:06:52 +0000
committerrvelices <rv-github@modusoptimus.com>2007-11-01 23:06:52 +0000
commitfabfd5eb6eb3279acfb167fd65489f4499d1e0cd (patch)
treedf748d242c8c914f66346e3967535d79cb6e134a /include/page_header.php
parent7cc4ab6fba1c9fd949e8132500f4938140c4bc81 (diff)
fix: in page_header.php U_HOME template var was overwriting the ones from every page -> now it is always make_index_url
fix: unvalidated comments use start end for RSS instead of end only (otherwise google reader creates a new item every time it downloads the feed) git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2158 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--include/page_header.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/page_header.php b/include/page_header.php
index 0dea51a33..c4d570eb6 100644
--- a/include/page_header.php
+++ b/include/page_header.php
@@ -53,7 +53,7 @@ $template->assign_vars(
'TAG_INPUT_ENABLED' =>
((is_adviser()) ? 'disabled onclick="return false;"' : ''),
- 'U_HOME' => get_absolute_root_url(),
+ 'U_HOME' => make_index_url(),
));
// picture header infos
@@ -103,4 +103,4 @@ header('Content-Type: text/html; charset='.$lang_info['charset']);
$template->parse('header');
trigger_action('loc_after_page_header');
-?>
+?> \ No newline at end of file