mirror of
https://github.com/openwrt/luci.git
synced 2026-05-31 10:31:55 +08:00
luci-proto-mbim: correctness fixes
Signed-off-by: Paul Donald <newtwen+github@gmail.com>
This commit is contained in:
@@ -64,6 +64,7 @@ return network.registerProtocol('mbim', {
|
|||||||
|
|
||||||
o = s.taboption('general', form.Value, 'apn', _('APN'));
|
o = s.taboption('general', form.Value, 'apn', _('APN'));
|
||||||
o.validate = function(section_id, value) {
|
o.validate = function(section_id, value) {
|
||||||
|
if (value == null || value == '') return true;
|
||||||
if (!/^[a-zA-Z0-9\-.]*[a-zA-Z0-9]$/.test(value))
|
if (!/^[a-zA-Z0-9\-.]*[a-zA-Z0-9]$/.test(value))
|
||||||
return _('Invalid APN provided');
|
return _('Invalid APN provided');
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user