From 19095cb3aee9b80f56f66180f6d78cf201ab0887 Mon Sep 17 00:00:00 2001 From: Arnold Bechtoldt Date: Tue, 21 Aug 2012 21:33:13 +0200 Subject: [PATCH] Update theme setting of active sessions (DB:panel_sessions), refs #1117 Signed-off-by: Arnold Bechtoldt --- install/updates/froxlor/0.9/update_0.9.inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install/updates/froxlor/0.9/update_0.9.inc.php b/install/updates/froxlor/0.9/update_0.9.inc.php index 56da8178..83d33b99 100644 --- a/install/updates/froxlor/0.9/update_0.9.inc.php +++ b/install/updates/froxlor/0.9/update_0.9.inc.php @@ -1951,6 +1951,9 @@ if(isFroxlorVersion('0.9.28-svn3')) // Updating customer's theme setting $db->query('UPDATE `' . TABLE_PANEL_CUSTOMERS . '` SET `theme` = \'' . $db->escape($classic_theme_replacement) . '\' WHERE `theme` = \'Classic\''); + // Updating theme setting of active sessions + $db->query('UPDATE `' . TABLE_PANEL_SESSIONS . '` SET `theme` = \'' . $db->escape($classic_theme_replacement) . '\' WHERE `theme` = \'Classic\''); + lastStepStatus(0); showUpdateStep('Altering Froxlor database and tables to use UTF-8. This may take a while..', true);