From bf51e940b073659c3722fa2908a295c3ab476241 Mon Sep 17 00:00:00 2001 From: Nathan Gray Date: Wed, 8 Oct 2014 17:29:40 +0000 Subject: [PATCH] Remove auto refresh options for 30 seconds and 1 minute, as apparently they cause problems with mail. Add auto refresh options for 15 and 30 minutes. --- etemplate/js/et2_extension_nextmatch.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/etemplate/js/et2_extension_nextmatch.js b/etemplate/js/et2_extension_nextmatch.js index 1d5de8262a..6f1668c014 100644 --- a/etemplate/js/et2_extension_nextmatch.js +++ b/etemplate/js/et2_extension_nextmatch.js @@ -1251,9 +1251,12 @@ var et2_nextmatch = et2_DOMWidget.extend([et2_IResizeable, et2_IInput], autoRefresh.set_id("nm_autorefresh"); autoRefresh.set_select_options({ 0: "off", - 30: "30 seconds", - 60: "1 Minute", - 300: "5 Minutes" + // Cause [unknown] problems with mail + //30: "30 seconds", + //60: "1 Minute", + 300: "5 Minutes", + 900: "15 Minutes", + 1800: "30 Minutes" }); autoRefresh.set_value(this._get_autorefresh()); autoRefresh.set_statustext(egw.lang("Automatically refresh list"));