2011-08-09 Vanessa Gil <vanessa.gil@artica.es>

* godmode/groups/group_list.php: Added groups must have a name and be unique.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4690 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
vgilc 2011-08-09 13:57:14 +00:00
parent 21ac505667
commit e87b6a7e6c
2 changed files with 28 additions and 17 deletions

View File

@ -1,3 +1,7 @@
2011-08-09 Vanessa Gil <vanessa.gil@artica.es>
* godmode/groups/group_list.php: Added groups must have a name and be unique.
2011-08-09 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* godmode/groups/group_list.php: Added db_clean_cache() in order

View File

@ -111,28 +111,35 @@ if ($create_group) {
$alerts_disabled = (bool) get_parameter ('alerts_disabled');
$custom_id = (string) get_parameter ('custom_id');
$skin = (string) get_parameter ('skin');
$check = db_get_value('nombre', 'tgrupo', 'nombre', $name);
/*Check if name field is empty*/
if ($name != "") {
$values = array(
'nombre' => $name,
'icon' => substr ($icon, 0, -4),
'parent' => $id_parent,
'disabled' => $alerts_disabled,
'custom_id' => $custom_id,
'id_skin' => $skin
);
if (!$check){
$values = array(
'nombre' => $name,
'icon' => substr ($icon, 0, -4),
'parent' => $id_parent,
'disabled' => $alerts_disabled,
'custom_id' => $custom_id,
'id_skin' => $skin
);
$result = db_process_sql_insert('tgrupo', $values);
}
else {
$result = false;
}
if ($result) {
echo "<h3 class='suc'>".__('Group successfully created')."</h3>";
$result = db_process_sql_insert('tgrupo', $values);
if ($result) {
echo "<h3 class='suc'>".__('Group successfully created')."</h3>";
} else {
echo "<h3 class='error'>".__('There was a problem creating group')."</h3>";
}
} else {
echo "<h3 class='error'>".__('Each group must have a different name')."</h3>";
}
} else {
echo "<h3 class='error'>".__('There was a problem creating group')."</h3>"; }
//$result = false;
echo "<h3 class='error'>".__('Group must have a name')."</h3>";
}
}
/* Update group */