mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 19:14:30 +04:00
Changes: - update to git master 2024-11-12 (dev stalled since then) - patch for OpenWrt bug #26422 / tvheadend bug #1786 - Options removed: - imagecache = tvheadend doesn't support disabling it anymore - Options added: - detailed (but slow) memory utilization reporting - Timeshift (default on) - tsfile (currently bugged in tvheadend, commented out / always on) - HDHomeRun server emulation (default on) - Digital Devices DVB CI descrambling cards (default off) - RegEx options cleaned up, PCRE2 is the new default. - Some help text improved Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
12 lines
466 B
Diff
12 lines
466 B
Diff
--- a/src/webui/static/lovcombo/lovcombo-all.js
|
|
+++ b/src/webui/static/lovcombo/lovcombo-all.js
|
|
@@ -297,7 +297,7 @@ Ext.ux.form.LovCombo = Ext.extend(Ext.ux
|
|
this.store.clearFilter();
|
|
this.store.each(function(r) {
|
|
var checked = !(!v.match(
|
|
- '(^|' + this.separator + ')' + RegExp.escape(r.get(this.valueField))
|
|
+ '(^|' + this.separator + ')' + RegExp.escape(String(r.get(this.valueField)))
|
|
+'(' + this.separator + '|$)'))
|
|
;
|
|
|