Skip to content

Commit

Permalink
Merge pull request #6473 from t-8ch/master
Browse files Browse the repository at this point in the history
luci-app-uhttpd: close braces in info strings
  • Loading branch information
feckert committed Jul 20, 2023
2 parents 7c4d525 + 4d841f2 commit 467aca5
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,7 +24,7 @@ return view.extend({
ucs.tab('server', _('Full Web Server Settings'), _('For settings primarily geared to serving more than the web UI'));
ucs.tab('advanced', _('Advanced Settings'), _('Settings which are either rarely needed or which affect serving the WebUI'));

lhttp = ucs.taboption('general', form.DynamicList, 'listen_http', _('HTTP listeners (address:port)'), _('Bind to specific interface:port (by specifying interface address'));
lhttp = ucs.taboption('general', form.DynamicList, 'listen_http', _('HTTP listeners (address:port)'), _('Bind to specific interface:port (by specifying interface address)'));
lhttp.datatype = 'list(ipaddrport(1))';

lhttp.validate = function (section_id, value) {
Expand Down Expand Up @@ -52,7 +52,7 @@ return view.extend({
return true;
};

lhttps = ucs.taboption('general', form.DynamicList, 'listen_https', _('HTTPS listener (address:port)'), _('Bind to specific interface:port (by specifying interface address'));
lhttps = ucs.taboption('general', form.DynamicList, 'listen_https', _('HTTPS listener (address:port)'), _('Bind to specific interface:port (by specifying interface address)'));
lhttps.datatype = 'list(ipaddrport(1))';

var cert = uci.get('uhttpd', 'main', 'cert');
Expand Down

0 comments on commit 467aca5

Please sign in to comment.