Fixed issue #90.
This commit is contained in:
parent
77692a6c11
commit
16d32b92c2
@ -170,7 +170,8 @@ Class AdminGroup extends CoordinationObj
|
||||
|
||||
# Variables de configuration de l'objet
|
||||
/* Pour le nom de l'objet... */
|
||||
while (list($key, $val) = each($_POST)) {
|
||||
// while (list($key, $val) = each($_POST)) {
|
||||
foreach($_POST as $key => $val)
|
||||
if (!(strpos($key, "nameLanguage")===false)) // on a trouvé un nom pour une langue
|
||||
{
|
||||
if ( $val!="" )
|
||||
@ -363,7 +364,8 @@ Class AdminGroup extends CoordinationObj
|
||||
$Group->setIcone( ((isset($_POST["iconeN"]))?(htmlentitiesconv($_POST["iconeN"])):"") );
|
||||
# Variables de configuration de l'objet
|
||||
/* Pour le nom de l'objet... */
|
||||
while (list($key, $val) = each($_POST)) {
|
||||
// while (list($key, $val) = each($_POST)) {
|
||||
foreach($_POST as $key => $val)
|
||||
if (!(strpos($key, "nameLanguage")===false)) // on a trouvé un nom pour une langue
|
||||
{
|
||||
if ( $val!="" )
|
||||
|
Loading…
x
Reference in New Issue
Block a user