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:
parent
c0e2ab269b
commit
e12e100e74
|
@ -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>
|
2012-06-13 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||||
|
|
||||||
* operation/agentes/estado_agente.php: Lost lines from my last
|
* operation/agentes/estado_agente.php: Lost lines from my last
|
||||||
|
|
|
@ -85,9 +85,12 @@ function main_view_enterprise($settings, $user_key) {
|
||||||
|
|
||||||
|
|
||||||
echo '<h4>';
|
echo '<h4>';
|
||||||
echo __('Your Pandora FMS Enterprise version number is') . ' ' .
|
if ($settings->current_update == 0)
|
||||||
$settings->current_update;
|
echo __('You do not have installed any updates of Pandora FMS Enterprise');
|
||||||
echo "</h4>";
|
else
|
||||||
|
echo __('Your Pandora FMS Enterprise version number is') . ' ' .
|
||||||
|
$settings->current_update;
|
||||||
|
echo '</h4>';
|
||||||
|
|
||||||
echo "<br><br>";
|
echo "<br><br>";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue