mirror of
https://github.com/YunoHost-Apps/hotspot_ynh.git
synced 2024-09-03 19:25:53 +02:00
Fix html typo
This commit is contained in:
parent
6f889c9e2a
commit
0c10a4e891
2 changed files with 4 additions and 2 deletions
|
@ -174,7 +174,6 @@ unset_ip6addr() {
|
|||
|
||||
unset_dhcpd() {
|
||||
rm -f /etc/dnsmasq.d/dhcpdv?.conf
|
||||
service dnsmasq restart
|
||||
}
|
||||
|
||||
unset_forwarding() {
|
||||
|
@ -344,6 +343,7 @@ case "$1" in
|
|||
set_dhcpd
|
||||
fi
|
||||
|
||||
# Restart dhcpd
|
||||
service bind9 stop &> /dev/null
|
||||
service dnsmasq restart
|
||||
|
||||
|
@ -388,6 +388,8 @@ case "$1" in
|
|||
if has_vpnclient_app; then
|
||||
service ynh-vpnclient start
|
||||
fi
|
||||
|
||||
service dnsmasq restart
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
|
|
|
@ -71,7 +71,7 @@
|
|||
<div style="padding: 14px 14px 0 10px">
|
||||
<div class="form-group">
|
||||
<label for="wifi_secure" class="col-sm-3 control-label"><?= T_('Hotspot Enabled') ?></label>
|
||||
<div class="col-sm-9 input-group-btn" data-toggle="tooltip" ?>">
|
||||
<div class="col-sm-9 input-group-btn">
|
||||
<div class="input-group">
|
||||
<input type="checkbox" class="form-control switch" name="service_enabled" id="service_enabled" value="1" <?= $service_enabled == 1 ? 'checked="checked"' : '' ?> />
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue