diff options
author | Phil Davis <phil@jankaritech.com> | 2017-05-25 06:18:28 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-25 06:18:28 +0545 |
commit | d900381c9384676462c91c0b2e7e59ec42723237 (patch) | |
tree | e57d1222944e338a372dbf82b2865a61d66e02ba | |
parent | 5ce6ce4b1ad850e70d5a2fe218317b1a1b545907 (diff) | |
download | pfsense-d900381c9384676462c91c0b2e7e59ec42723237.zip pfsense-d900381c9384676462c91c0b2e7e59ec42723237.tar.gz |
Add missing break for cloudflare case
-rw-r--r-- | src/usr/local/www/services_dyndns_edit.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/usr/local/www/services_dyndns_edit.php b/src/usr/local/www/services_dyndns_edit.php index f2b5701..2952729 100644 --- a/src/usr/local/www/services_dyndns_edit.php +++ b/src/usr/local/www/services_dyndns_edit.php @@ -498,6 +498,7 @@ events.push(function() { hideCheckbox('proxied', false); hideInput('zoneid', true); hideInput('ttl', true); + break; default: hideGroupInput('domainname', true); hideInput('resultmatch', true); |