diff options
author | rub <rub@piwigo.org> | 2006-04-12 22:49:42 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2006-04-12 22:49:42 +0000 |
commit | 8da9ed8d9baac5583c72c2d09c01bddd7adb0cb5 (patch) | |
tree | 051db5297bf8d628213ee44eefcb4f36f73077c4 /include/page_header.php | |
parent | dffa074a1c02086887527d3358878b678b2be73a (diff) |
Issue ID 330:
o Change NBM configuration in order to avoid lose treatment action when occurred timeout
o Add news redirect/repost functions
git-svn-id: http://piwigo.org/svn/trunk@1156 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/page_header.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/page_header.php b/include/page_header.php index f9b130c3c..f1f10cf56 100644 --- a/include/page_header.php +++ b/include/page_header.php @@ -57,10 +57,11 @@ $template->assign_vars( )); // refresh -if ( isset( $refresh ) and intval($refresh) >= 0 and isset( $url_link ) ) +if ( isset( $refresh ) and intval($refresh) >= 0 and isset( $url_link ) and isset( $redirect_msg ) ) { $template->assign_vars( array( + 'U_REDIRECT_MSG' => $redirect_msg, 'REFRESH_TIME' => $refresh, 'U_REFRESH' => $url_link )); |