From 08da40be5fa88edd7661de77a11ae4955771d471 Mon Sep 17 00:00:00 2001 From: rvelices Date: Thu, 16 Sep 2010 17:20:04 +0000 Subject: bug 1852: html redirections fail on admin pages git-svn-id: http://piwigo.org/svn/trunk@6944 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions.inc.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/functions.inc.php b/include/functions.inc.php index 551ad72c0..822c36da0 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -579,6 +579,10 @@ function redirect_html( $url , $msg = '', $refresh_time = 0) load_language('lang', PHPWG_ROOT_PATH.'local/', array('no_fallback'=>true, 'local'=>true) ); $template = new Template(PHPWG_ROOT_PATH.'themes', get_default_theme()); } + elseif (defined('IN_ADMIN') and IN_ADMIN) + { + $template = new Template(PHPWG_ROOT_PATH.'themes', get_default_theme()); + } if (empty($msg)) { -- cgit v1.2.3