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

* godmode/groups/modu_group_list.php: Fixed module update when a 
	module group is deleted.
	
	Merged from branches.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6637 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
juanmanuelr 2012-06-20 17:24:43 +00:00
parent 9e20e71461
commit a4912f64e5
2 changed files with 25 additions and 10 deletions

View File

@ -1,3 +1,10 @@
2012-06-20 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/groups/modu_group_list.php: Fixed module update when a
module group is deleted.
Merged from branches.
2012-06-20 Sergio Martin <sergio.martin@artica.es>
* include/functions_graph.php

View File

@ -71,18 +71,18 @@ if ($create_group) {
$result = db_process_sql_insert('tmodule_group', array('name' => $name));
if ($result) {
echo "<h3 class='suc'>".__('Group successfully created')."</h3>";
ui_print_success_message(__('Group successfully created'));
}
else {
echo "<h3 class='error'>".__('There was a problem creating group')."</h3>";
ui_print_error_message(__('There was a problem creating group'));
}
}
else {
echo "<h3 class='error'>".__('Each module group must have a different name')."</h3>";
ui_print_error_message(__('Each module group must have a different name'));
}
}
else {
echo "<h3 class='error'>".__('Module group must have a name')."</h3>";
ui_print_error_message(__('Module group must have a name'));
}
}
@ -102,18 +102,18 @@ if ($update_group) {
$result = db_process_sql_update('tmodule_group', array('name' => $name), array('id_mg' => $id_group));
if ($result !== false) {
echo "<h3 class='suc'>".__('Group successfully updated')."</h3>";
ui_print_success_message(__('Group successfully updated'));
}
else {
echo "<h3 class='error'>".__('There was a problem modifying group')."</h3>";
ui_print_error_message(__('There was a problem modifying group'));
}
}
else {
echo "<h3 class='error'>".__('Each module group must have a different name')."</h3>";
ui_print_error_message(__('Each module group must have a different name'));
}
}
else {
echo "<h3 class='error'>".__('Module group must have a name')."</h3>";
ui_print_error_message(__('Module group must have a name'));
}
}
@ -123,10 +123,18 @@ if ($delete_group) {
$result = db_process_sql_delete('tmodule_group', array('id_mg' => $id_group));
if ($result) {
$result = db_process_sql_update('tagente_modulo', array('id_module_group' => 0), array('id_module_group' => $id_group));
// A group with no modules can be deleted, to avoid a message error then do the follwing
if ($result !== false)
$result = true;
}
if (! $result)
echo "<h3 class='error'>".__('There was a problem deleting group')."</h3>";
ui_print_error_message(__('There was a problem deleting group'));
else
echo "<h3 class='suc'>".__('Group successfully deleted')."</h3>";
ui_print_success_message(__('Group successfully deleted'));
}
$total_groups = db_get_num_rows('SELECT * FROM tmodule_group');