mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +01:00
If an option is null, don't keep it because it may get turned to an empty array.
This commit is contained in:
parent
c32beca725
commit
7c72754631
@ -231,6 +231,9 @@ class ajax_select_widget
|
|||||||
if(is_numeric($value)) {
|
if(is_numeric($value)) {
|
||||||
$value = (string)$value;
|
$value = (string)$value;
|
||||||
}
|
}
|
||||||
|
if($value === null) {
|
||||||
|
unset($options[$key]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$options = $GLOBALS['egw']->js->convert_phparray_jsarray("options['$name']", $options, true);
|
$options = $GLOBALS['egw']->js->convert_phparray_jsarray("options['$name']", $options, true);
|
||||||
$GLOBALS['egw']->js->set_onload("if(!options) {
|
$GLOBALS['egw']->js->set_onload("if(!options) {
|
||||||
|
Loading…
Reference in New Issue
Block a user