diff options
author | Jo-Philipp Wich <jo@mein.io> | 2023-04-03 14:05:00 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2023-04-03 14:05:00 +0200 |
commit | b07ac8add8f6d2081663341b55b999e4d9c59dcd (patch) | |
tree | 759b4497b368ef2f0c6a4db99b2370a2262bef71 /modules/luci-base | |
parent | dd1111407d8f0b1f7f761c5ebbe6ae43a268a4a4 (diff) |
luci-base: validation.js: fix xgettext quirk
The xgettext utility does not properly discard `/` inside regex character
classes, causing a false positive unterminated string error.
Avoid the issue by explicitly escaping the embedded slash.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/validation.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/validation.js b/modules/luci-base/htdocs/luci-static/resources/validation.js index b7a3a140e4..791a84823d 100644 --- a/modules/luci-base/htdocs/luci-static/resources/validation.js +++ b/modules/luci-base/htdocs/luci-static/resources/validation.js @@ -432,7 +432,7 @@ var ValidatorFactory = baseclass.extend({ if (v == '.' || v == '..') return this.assert(false, _('valid network device name, not "." or ".."')); - return this.assert(v.match(/^[^:/%\s]{1,15}$/), _('valid network device name between 1 and 15 characters not containing ":", "/", "%" or spaces')); + return this.assert(v.match(/^[^:\/%\s]{1,15}$/), _('valid network device name between 1 and 15 characters not containing ":", "/", "%" or spaces')); }, range: function(min, max) { |