2009-05-25 Esteban Sanchez <estebans@artica.es>

* godmode/modules/manage_network_components.php: Fixed a typo on
	onsubmit paramter that was avoiding asking for confirmation.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1706 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
Esteban Sanchez 2009-05-25 14:48:39 +00:00
parent d4b2f7863d
commit a0d8bf5647
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-05-25 Esteban Sanchez <estebans@artica.es>
* godmode/modules/manage_network_components.php: Fixed a typo on
onsubmit paramter that was avoiding asking for confirmation.
2009-05-25 Esteban Sanchez <estebans@artica.es>
* general/ui/agents_list.php: Fixed pagination javascript selector

View File

@ -258,7 +258,7 @@ foreach ($components as $component) {
$data[3] = substr ($component['description'], 0, 30);
$data[4] = get_network_component_group_name ($component['id_group']);
$data[5] = $component['max']." / ".$component['min'];
$data[6] = '<form method="post" action="'.$url.'" onsubmit="if (! confirm (\''.__('Are you sure?').'\') return false)">';
$data[6] = '<form method="post" action="'.$url.'" onsubmit="if (! confirm (\''.__('Are you sure?').'\')) return false">';
$data[6] .= print_input_hidden ('delete_component', 1, true);
$data[6] .= print_input_hidden ('id', $component['id_nc'], true);
$data[6] .= print_input_hidden ('search_id_group', $search_id_group, true);