mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-19 04:46:42 +02:00
Fix history log widget no longer working
This commit is contained in:
@@ -944,7 +944,7 @@ var et2_selectbox_ro = et2_selectbox.extend([et2_IDetachedDOM],
|
||||
for(var o in this.optionValues)
|
||||
{
|
||||
var option = this.optionValues[o];
|
||||
var key = typeof option == 'object' && typeof option.value != 'undefined' ? option.value : o;
|
||||
var key = typeof option == 'object' && option != null && typeof option.value != 'undefined' ? option.value : o;
|
||||
if (key != _value[i]) continue;
|
||||
var label = typeof option == 'object' ? option.label : option;
|
||||
if (_value.length == 1)
|
||||
|
Reference in New Issue
Block a user