From ec037e5390351c4bd9a77d5bc8d39be3090ed526 Mon Sep 17 00:00:00 2001 From: Marco Antonio Nina Date: Tue, 26 Jun 2012 10:46:34 -0400 Subject: [PATCH] BUG 8899 En Experience User en el deslogueo se direcciona... SOLVED - Not checked with the default skin. - was modified the class.g to verify skin from the configuration --- gulliver/system/class.g.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gulliver/system/class.g.php b/gulliver/system/class.g.php index 1b9adaca1..4f2331e38 100755 --- a/gulliver/system/class.g.php +++ b/gulliver/system/class.g.php @@ -988,7 +988,8 @@ class G /* Fix to prevent use uxs skin outside siplified interface, because that skin is not compatible with others interfaces*/ if ($SYS_SKIN == 'uxs' && $SYS_COLLECTION != 'home' && $SYS_COLLECTION != 'cases') { - $SYS_SKIN = 'classic'; + $config = System::getSystemConfiguration(); + $SYS_SKIN = $config['default_skin']; } define("SYS_LANG", $SYS_LANG);