2012-10-29 Miguel de Dios <miguel.dedios@artica.es>
* extensions/update_manager.php: silenced the notice PHP message when it has connection to internet. Fixes: #3560632 MERGED FROM THE BRANCH PANDORA_4 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7107 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
11ef33fe73
commit
4cb272f934
|
@ -1,3 +1,12 @@
|
|||
2012-10-29 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* extensions/update_manager.php: silenced the notice PHP message
|
||||
when it has connection to internet.
|
||||
|
||||
Fixes: #3560632
|
||||
|
||||
MERGED FROM THE BRANCH PANDORA_4
|
||||
|
||||
2012-10-29 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* include/functions_graph.php: Fixed a path.
|
||||
|
|
|
@ -38,7 +38,7 @@ if (is_ajax ()) {
|
|||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if ($get_license_info) {
|
||||
enterprise_include_once('include/functions_license.php');
|
||||
|
||||
|
@ -190,7 +190,7 @@ function pandora_update_manager_login () {
|
|||
|
||||
$user_key = get_user_key ($settings);
|
||||
|
||||
$package = um_client_check_latest_update ($settings, $user_key);
|
||||
$package = @um_client_check_latest_update ($settings, $user_key);
|
||||
|
||||
if (is_object ($package)) {
|
||||
if ($package->id != 'ERROR_NON_NUMERIC_FOUND') {
|
||||
|
|
Loading…
Reference in New Issue