2010-08-05 Sergio Martin <sergio.martin@artica.es>

* operation/agentes/networkmap.php: Change the default map to topology map



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3105 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
zarzuelo 2010-08-05 09:23:12 +00:00
parent e4c88b9013
commit 8e6febbfa7
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2010-08-05 Sergio Martin <sergio.martin@artica.es>
* operation/agentes/networkmap.php: Change the default map to topology map
2010-08-04 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_filemanager.php: move the action messages to $config
intermediate var.

View File

@ -334,9 +334,6 @@ echo '</table></table></form>';
if($id_networkmap != 0) {
switch ($activeTab) {
case 'topology':
require_once('operation/agentes/networkmap.topology.php');
break;
case 'groups':
require_once('operation/agentes/networkmap.groups.php');
break;
@ -344,7 +341,8 @@ if($id_networkmap != 0) {
require_once(''.ENTERPRISE_DIR.'/operation/policies/networkmap.policies.php');
break;
default:
enterprise_selectTab($activeTab);
case 'topology':
require_once('operation/agentes/networkmap.topology.php');
break;
}
}