From 77fc1abe8975a67051eed954458d329e9e82fc4b Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 20 May 2019 18:16:21 +0200 Subject: [PATCH] minor style updates and fixes in safe-output --- pandora_console/godmode/setup/setup_notifications.php | 1 + pandora_console/include/styles/register.css | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/setup/setup_notifications.php b/pandora_console/godmode/setup/setup_notifications.php index 473acba471..8f6630d4e3 100644 --- a/pandora_console/godmode/setup/setup_notifications.php +++ b/pandora_console/godmode/setup/setup_notifications.php @@ -167,6 +167,7 @@ if (get_parameter('get_notification', 0)) { $msg = messages_get_message($msg_id); $msg['mensaje'] = io_safe_output($msg['mensaje']); + $msg['subject'] = io_safe_output($msg['subject']); echo json_encode($msg); } diff --git a/pandora_console/include/styles/register.css b/pandora_console/include/styles/register.css index 47c4b90860..d2589a3f01 100644 --- a/pandora_console/include/styles/register.css +++ b/pandora_console/include/styles/register.css @@ -19,7 +19,8 @@ button.submit-cancel:hover { } input[type="submit"].submit-next, -button.submit-next { +button.submit-next, +input[type="button"].submit-next { color: #82b92e !important; border: 1px solid #82b92e !important; background: #fff !important; @@ -29,11 +30,11 @@ button.submit-next { cursor: pointer !important; text-align: center !important; height: 30px !important; - width: 90px !important; } input[type="submit"].submit-next:hover, -button.submit-next:hover { +button.submit-next:hover, +input[type="button"].submit-next:hover { color: #fff !important; background: #82b92e !important; }