2013-10-16 Sergio Martin <sergio.martin@artica.es>
* include/javascript/jquery.pandora.js include/functions_config.php: Changed license warning window time to 30 seconds. Added header warning message when license is expired in client mode git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8925 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
6edc77cf67
commit
ab7919e623
|
@ -1,3 +1,10 @@
|
|||
2013-10-16 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/javascript/jquery.pandora.js
|
||||
include/functions_config.php: Changed license warning window
|
||||
time to 30 seconds. Added header warning message when license
|
||||
is expired in client mode
|
||||
|
||||
2013-10-16 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/massive/massive_delete_modules.php,
|
||||
|
|
|
@ -1102,6 +1102,13 @@ function config_check () {
|
|||
}
|
||||
}
|
||||
|
||||
if (isset ($config['license_expired'])) {
|
||||
$config["alert_cnt"]++;
|
||||
$_SESSION["alert_msg"] .= ui_print_error_message(
|
||||
array('message' => __('<strong style="font-size: 11pt">This license has expired.</strong> <br><br>You can not get updates until you renew the license.').'</h3>',
|
||||
'no_close' => true, 'force_style' => 'color: #000000 !important'), '', true);
|
||||
}
|
||||
|
||||
if (!is_writable ("attachment")) {
|
||||
$config["alert_cnt"]++;
|
||||
$_SESSION["alert_msg"] .= ui_print_error_message(
|
||||
|
|
|
@ -109,7 +109,7 @@ $(document).ready (function () {
|
|||
$("#spinner_ok").hide();
|
||||
$("#ok_buttom").show();
|
||||
},
|
||||
10000
|
||||
30000
|
||||
);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue