1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2024-12-19 05:01:12 +01:00

Avoid error if filter has no options.

This commit is contained in:
Nathan Gray 2014-10-01 15:04:21 +00:00
parent e1619d6cb9
commit 3abff57761

View File

@ -2718,7 +2718,7 @@ var et2_nextmatch_filterheader = et2_selectbox.extend([et2_INextmatchHeader, et2
*/
createInputWidget: function() {
// Make sure there's an option for all
if(!this.options.empty_label && !this.options.select_options[""])
if(!this.options.empty_label && (!this.options.select_options || !this.options.select_options[""]))
{
this.options.empty_label = this.options.label ? this.options.label : egw.lang("All");
}