mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-18 04:31:06 +01:00
fixing the fix: now cat_id=1 got not lost with a 2nd default option set in addressbook (0=None)
This commit is contained in:
parent
757d0e9c38
commit
1125c3f52c
@ -244,7 +244,7 @@ class addressbook_ui extends addressbook_bo
|
|||||||
$content['nm'] = array_merge($content['nm'],$state);
|
$content['nm'] = array_merge($content['nm'],$state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$sel_options['cat_id'] = array(array('value' => '', 'label' => lang('all')), array('value' => 0, 'label'=>lang('None')));
|
$sel_options['cat_id'] = array('' => lang('all'), '0' => lang('None'));
|
||||||
|
|
||||||
// Delete list action depends on permissions
|
// Delete list action depends on permissions
|
||||||
if($this->get_lists(EGW_ACL_EDIT))
|
if($this->get_lists(EGW_ACL_EDIT))
|
||||||
|
@ -256,12 +256,12 @@ class etemplate_widget_menupopup extends etemplate_widget
|
|||||||
// either uses the same ID in the template, or adds the options twice
|
// either uses the same ID in the template, or adds the options twice
|
||||||
if(is_numeric($value) && (!is_array($label) || is_array($label) && !array_key_exists('value',$label)))
|
if(is_numeric($value) && (!is_array($label) || is_array($label) && !array_key_exists('value',$label)))
|
||||||
{
|
{
|
||||||
$check_value = is_array($label) && array_key_exists('value', $label) ? $label['value'] : $value;
|
$check_value = (string)(is_array($label) && array_key_exists('value', $label) ? $label['value'] : $value);
|
||||||
if($value == $check_value)
|
if((string)$value === $check_value)
|
||||||
{
|
{
|
||||||
foreach($options as $key => $existing)
|
foreach($options as $key => $existing)
|
||||||
{
|
{
|
||||||
if(is_array($existing) && $existing['value'] == $check_value && $key != $value)
|
if(is_array($existing) && isset($existing['value']) && (string)$existing['value'] === $check_value && $key != $value)
|
||||||
{
|
{
|
||||||
unset($options[$value]);
|
unset($options[$value]);
|
||||||
continue 2;
|
continue 2;
|
||||||
|
@ -188,8 +188,7 @@ class etemplate_widget_nextmatch extends etemplate_widget
|
|||||||
{
|
{
|
||||||
$value['options-cat_id'][''] = lang('all');
|
$value['options-cat_id'][''] = lang('all');
|
||||||
}
|
}
|
||||||
$value['options-cat_id'] = array_merge($value['options-cat_id'],
|
$value['options-cat_id'] += etemplate_widget_menupopup::typeOptions('select-cat', ',,'.$cat_app,$no_lang,false,$value['cat_id']);
|
||||||
etemplate_widget_menupopup::typeOptions('select-cat', ',,'.$cat_app,$no_lang,false,$value['cat_id']));
|
|
||||||
etemplate_widget_menupopup::fix_encoded_options($value['options-cat_id']);
|
etemplate_widget_menupopup::fix_encoded_options($value['options-cat_id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user