mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
fix for group box in calendar
This commit is contained in:
parent
e82a7bebc8
commit
2f10a6cc28
@ -207,12 +207,18 @@
|
|||||||
{
|
{
|
||||||
global $phpgw;
|
global $phpgw;
|
||||||
|
|
||||||
if(!$name) $name = "n_groups[]";
|
if(!$name) $name = "n_groups[]";
|
||||||
$out = '<select name="' . $name . '" multiple>';
|
$out = '<select name="' . $name . '" multiple>';
|
||||||
while (list($null,$group) = each($groups)) {
|
while (list($null,$group) = each($groups)) {
|
||||||
$out .= '<option value="' . $group[0] . '"';
|
$out .= '<option value="' . $group[0] . '"';
|
||||||
if (ereg("," . $group[0] . ",", $selected))
|
if (strtolower(gettype($selected)) == strtolower("array")) {
|
||||||
{
|
for($i=0;$i<count($selected);$i++) {
|
||||||
|
if ($group[0] == $selected[$i]) {
|
||||||
|
$out .= " SELECTED";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} elseif (ereg("," . $group[0] . ",", $selected)) {
|
||||||
$out .= " SELECTED";
|
$out .= " SELECTED";
|
||||||
}
|
}
|
||||||
$out .= ">" . $group[1] . "</option>\n";
|
$out .= ">" . $group[1] . "</option>\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user