From e7dbb55392d4c3445fbea964769e8d1ab1c50b6e Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 May 2019 12:00:49 +0200 Subject: [PATCH] Minor fixes Former-commit-id: 51e446b36a4ad2b93a1a2e3ff76e89ea2a21db9b --- pandora_console/general/logon_ok.php | 65 ------------------- pandora_console/general/register.php | 9 +-- pandora_console/godmode/setup/license.php | 61 +++++++++-------- .../include/class/ConsoleSupervisor.php | 2 +- pandora_console/include/config_process.php | 3 +- 5 files changed, 42 insertions(+), 98 deletions(-) diff --git a/pandora_console/general/logon_ok.php b/pandora_console/general/logon_ok.php index 2004e3af9b..e4ce258c72 100644 --- a/pandora_console/general/logon_ok.php +++ b/pandora_console/general/logon_ok.php @@ -214,71 +214,6 @@ if (!empty($all_data)) { // END OF NEWS BOARD. } - - $nots = messages_get_overview( - 'utimestamp', - 'DESC', - false, - true, - 0, - [ - 'description' => [ - 'messages', - 'System status', - ], - ] - ); - if (!empty($nots)) { - // Notifications board. - echo '
'; - - echo ''; - echo ''; - if ($config['prominent_time'] == 'timestamp') { - $comparation_suffix = ''; - } else { - $comparation_suffix = __('ago'); - } - - foreach ($nots as $msg) { - $conversation = io_safe_output( - messages_get_conversation($msg) - ); - - if (is_array($conversation)) { - $text = array_pop($conversation)['message']; - } else { - // Skip empty message. - continue; - } - - $url = ui_get_full_url( - 'index.php?sec=message_list&sec2=operation/messages/message_edit&read_message=1&id_message='.$msg['id_mensaje'] - ); - if ($msg['url'] != '') { - $url = $msg['url']; - } - - echo ''; - echo ''; - echo ''; - } - - echo '
'.__('Pending notifications').'
'.$msg['subject'].'
'; - if ($msg['id_usuario_origen'] != '') { - echo ''.get_user_fullname($msg['id_usuario_origen']).' '; - } - - echo ''.ui_print_timestamp($msg['timestamp'], true).' '.$comparation_suffix.'
'; - echo nl2br($text); - echo '
'; - echo '
'; - - echo '

'; - - // EO Notifications board. - } - // LAST ACTIVITY. // Show last activity from this user. echo '
'; diff --git a/pandora_console/general/register.php b/pandora_console/general/register.php index ee94ef85f0..257cdef98a 100644 --- a/pandora_console/general/register.php +++ b/pandora_console/general/register.php @@ -102,7 +102,7 @@ if (is_ajax()) { if ($cancel_newsletter) { db_process_sql_update( 'tusuario', - ['middlename' => 0], + ['middlename' => -1], ['id_user' => $config['id_user']] ); @@ -133,7 +133,8 @@ $newsletter = db_get_value( 'tusuario', 'id_user', $config['id_user'] -) === null; +); +$show_newsletter = $newsletter == '0' || $newsletter == ''; $registration = isset($config['pandora_uid']) !== true || $config['pandora_uid'] == ''; @@ -155,11 +156,11 @@ if ($registration) { false, // Launch only if not being launch from 'initial'. !$initial, - (($newsletter === true) ? 'show_newsletter_wizard()' : null) + (($show_newsletter === true) ? 'show_newsletter_wizard()' : null) ); } -if ($newsletter) { +if ($show_newsletter) { // Show newsletter wizard for current user. newsletter_wiz_modal( false, diff --git a/pandora_console/godmode/setup/license.php b/pandora_console/godmode/setup/license.php index 413b1d7fe1..3f559be660 100644 --- a/pandora_console/godmode/setup/license.php +++ b/pandora_console/godmode/setup/license.php @@ -102,30 +102,37 @@ if (enterprise_installed()) { echo '
'; } -echo ''; -echo ''; +if (enterprise_installed()) { + echo ''; + echo ''; +} + +if (enterprise_hook('print_activate_licence_dialog') == ENTERPRISE_NOT_HOOK) { + echo ''; + echo ''; +} diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index 44d8571b92..1b5a114287 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -2258,7 +2258,7 @@ class ConsoleSupervisor } // Only ask for messages once a day. - $future = (time() + 24 * SECONDS_1HOUR); + $future = (time() + 2 * SECONDS_1HOUR); config_update_value('last_um_check', $future); include_once $config['homedir'].'/include/functions_update_manager.php'; diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5e87868425..ab9d7532ed 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -208,7 +208,8 @@ if (!isset($config['inventory_changes_blacklist'])) { if (!isset($config['url_update_manager'])) { config_update_value( 'url_update_manager', - 'https://licensing.artica.es/pandoraupdate7/server.php' + //'https://licensing.artica.es/pandoraupdate7/server.php' + 'https://172.17.0.3/server.php' ); }