2012-06-13 Juan Manuel Ramon <juanmanuel.ramon@artica.es>

* extensions/update_manager/main.php: Added message when user 
	doesn't have an enterprise update installed on web console.
	
	Merged from branches.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6529 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2012-06-13 10:24:57 +00:00
parent ff67a91b76
commit 6e4d6247b4
2 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2012-06-13 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* extensions/update_manager/main.php: Added message when user
doesn't have an enterprise update installed on web console.
Merged from branches.
2012-06-13 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/agentes/estado_agente.php: Lost lines from my last

View File

@ -85,9 +85,12 @@ function main_view_enterprise($settings, $user_key) {
echo '<h4>';
echo __('Your Pandora FMS Enterprise version number is') . ' ' .
$settings->current_update;
echo "</h4>";
if ($settings->current_update == 0)
echo __('You do not have installed any updates of Pandora FMS Enterprise');
else
echo __('Your Pandora FMS Enterprise version number is') . ' ' .
$settings->current_update;
echo '</h4>';
echo "<br><br>";