From bfa86888b91accac30331869301822cd344fe483 Mon Sep 17 00:00:00 2001 From: zarzuelo Date: Thu, 31 May 2012 10:18:35 +0000 Subject: [PATCH] 2012-05-31 Sergio Martin * extensions/system_info.php: Fixed strange behavior in the system info form for bug 3530863 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6382 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/extensions/system_info.php | 12 +++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 5c66a3ddea..b3298be2fc 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2012-05-31 Sergio Martin + + * extensions/system_info.php: Fixed strange behavior in + the system info form for bug 3530863 + 2012-05-30 Sancho Lerena * include/functions_reporting.php diff --git a/pandora_console/extensions/system_info.php b/pandora_console/extensions/system_info.php index f4dce79ee9..017af49919 100644 --- a/pandora_console/extensions/system_info.php +++ b/pandora_console/extensions/system_info.php @@ -261,7 +261,7 @@ function mainSystemInfo() { echo "

" . __('This tool is used just to view your Pandora FMS system logfiles directly from console') . "

"; - echo "
"; + echo ""; $table = null; $table->width = '98%'; $table->align = array(); @@ -326,8 +326,14 @@ function mainSystemInfo() { $url_zip = ui_get_full_url(false); $url = '' . __('System info file zipped') . ''; - echo '' . __('File:') . ' ' . $url . '
'; - echo '' . __('Location:') . ' ' . $zipArchive; + + if($log_info || $system_info || $pandora_diag) { + echo '' . __('File:') . ' ' . $url . '
'; + echo '' . __('Location:') . ' ' . $zipArchive; + } + else { + echo __('No selected'); + } $zip = new ZipArchive;