From a5346a7ae343a38a0001e69ef687f341340f8fc7 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 21 Nov 2018 17:38:11 +0100 Subject: [PATCH] fixed error login double --- pandora_console/include/styles/pandora.css | 12 ++++++++++++ pandora_console/index.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 4f67602f62..ffc2d96259 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -5038,4 +5038,16 @@ ul.ui-front li a.ui-menu-item-wrapper span{ ul.ui-front li a.ui-menu-item-wrapper:hover{ text-decoration: none !important; } + +input[type=submit].ui-button-dialog{ + margin: .5em 1em .5em 0 !important; + cursor: pointer !important; + background: white !important; + background-color: white !important; + color: #82b92e !important; + text-align: center !important; + border: 1px solid #82b92e !important; + height:30px !important; + width:90px !important; +} /* --- END - JQUERY-UI --- */ diff --git a/pandora_console/index.php b/pandora_console/index.php index e0a9fdfefa..f7697e9c1a 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -562,7 +562,7 @@ if (! isset ($config['id_user'])) { $query_params_redirect = $_GET; // Visual console do not want sec2 if($home_page == 'Visual console') unset($query_params_redirect["sec2"]); - $redirect_url = '?1=1'; + $redirect_url = '?logged=1'; foreach ($query_params_redirect as $key => $value) { if ($key == "login") continue; $redirect_url .= '&'.safe_url_extraclean($key).'='.safe_url_extraclean($value);