diff --git a/pandora_console/general/login_identification_wizard.php b/pandora_console/general/login_identification_wizard.php index a2b916c29c..69e8e5a888 100644 --- a/pandora_console/general/login_identification_wizard.php +++ b/pandora_console/general/login_identification_wizard.php @@ -135,10 +135,10 @@ if ($email == 'admin@example.com') $email = ''; // Prints accept register license echo '
'; - echo '
'; - echo html_print_image ('images/support.png', true); + echo '
'; + echo html_print_image ('images/pandora_circle_big.png', true); echo '
'; - echo '
'; + echo '
'; echo __('KEEP UPDATED!'); echo '
'; @@ -175,7 +175,7 @@ echo '
'; // Print yes or not dialog echo '
'; - echo '
'; + echo '
'; echo __("Do you want to continue without any registration") . "?"; echo '
'; echo '
'; @@ -189,9 +189,9 @@ echo '
'; // Print feedback user dialog echo '
'; echo '
'; - echo html_print_image ('images/support.png', true); + echo html_print_image ('images/success_circle_big.png', true); echo '
'; - echo '
'; + echo '
'; echo '
'; ?> @@ -231,7 +231,9 @@ function submit_open_wizard (register, newsletter, email, forced) { if (i == 'status') feedback_status = val; }); if (feedback_status == 0) { - $("#ui_messages_feedback img").attr("src", "images/error_login.png"); + $("#ui_messages_feedback img").attr("src", "images/fail_circle_big.png"); + } else { + $("#ui_messages_feedback img").attr("src", "images/success_circle_big.png"); } $("#feedback_message").html(feedback_message); }, @@ -266,7 +268,9 @@ $("#submit-finish_dialog_button").click (function () { var register_forced = register ? 1 : 0; submit_open_wizard (register_forced, newsletter, email, display_forced); $("#login_accept_register" ).dialog('close'); - $("#ui_messages_feedback").dialog('open'); + if (register || newsletter) { + $("#ui_messages_feedback").dialog('open'); + } } }); @@ -299,14 +303,14 @@ $(document).ready (function () { draggable: true, modal: true, height: 350, - width: 630, + width: 570 }); $("#login_registration_yesno").dialog({ resizable: false, draggable: true, modal: true, - width: 400, + width: 320, overlay: { opacity: 1, background: "black" @@ -319,7 +323,7 @@ $(document).ready (function () { resizable: false, draggable: true, modal: true, - width: 350, + width: 300, overlay: { opacity: 1, background: "black" @@ -366,7 +370,7 @@ $(document).ready (function () { height: 100px; width: 100%; overflow-y: scroll; - border: 1px solid grey; + border: 1px solid #E4E4E4; border-radius: 3px; } diff --git a/pandora_console/godmode/update_manager/update_manager.php b/pandora_console/godmode/update_manager/update_manager.php index 27590bc011..ff49bf9c6d 100644 --- a/pandora_console/godmode/update_manager/update_manager.php +++ b/pandora_console/godmode/update_manager/update_manager.php @@ -40,12 +40,15 @@ $buttons = array( 'online' => array( 'active' => ($tab == 'online') ? true : false, 'text' => '' . - html_print_image("images/op_gis.png", true, array ("title" => __('Online update manager'))) .''), - 'messages' => array( + html_print_image("images/op_gis.png", true, array ("title" => __('Online update manager'))) .'') + ); + +if (license_free()) { + $buttons['messages'] = array( 'active' => ($tab == 'messages') ? true : false, 'text' => '' . - html_print_image("images/hourglass.png", true, array ("title" => __('Update manager messages'))) .'') - ); + html_print_image("images/email_mc.png", true, array ("title" => __('Update manager messages'))) .''); +} switch ($tab) { case 'setup': diff --git a/pandora_console/images/fail_circle_big.png b/pandora_console/images/fail_circle_big.png new file mode 100644 index 0000000000..d8dcc880f1 Binary files /dev/null and b/pandora_console/images/fail_circle_big.png differ diff --git a/pandora_console/images/pandora_circle_big.png b/pandora_console/images/pandora_circle_big.png new file mode 100644 index 0000000000..7fc09e1c0a Binary files /dev/null and b/pandora_console/images/pandora_circle_big.png differ diff --git a/pandora_console/images/success_circle_big.png b/pandora_console/images/success_circle_big.png new file mode 100644 index 0000000000..4e52c7acf2 Binary files /dev/null and b/pandora_console/images/success_circle_big.png differ