Feature 492: first step

Simple redirect.tpl in template-common
Simplification of function redirect()


git-svn-id: http://piwigo.org/svn/trunk@1508 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
nikrou
2006-07-27 18:51:54 +00:00
parent eb6d08ead2
commit bc65a0d6cd
4 changed files with 42 additions and 32 deletions
-12
View File
@@ -52,18 +52,6 @@ $template->assign_vars(
'TAG_INPUT_ENABLED' => ((is_adviser()) ? 'disabled onclick="return false;"' : '')
));
// refresh
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
));
$template->assign_block_vars('refresh', array());
}
header('Content-Type: text/html; charset='.$lang_info['charset']);
$template->parse('header');
?>