From f4065455b05ef718c09b4851212b79e7993baaa5 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Wed, 9 Apr 2014 17:58:10 -0700 Subject: List GWGs in Interface to send update from Back-port of this fix done in master https://github.com/pfsense/pfsense/commit/31300a95f71b14dcb98c139388205223a36e8c8b and https://github.com/pfsense/pfsense/commit/8f56dd279432c4fd5a027310622e2650822e4651 Unfortunately this never got back-merged to 2.1 branch. A user on the forum noticed the issue again on 2.1.1 - https://forum.pfsense.org/index.php?topic=74922.0 I am submitting this so that when the next security issue happens, and there is 2.1.n+1 then this little fix will also happen automagically. I wonder what other fixes are in master that missed being back-ported to 2.1 branch. --- usr/local/www/services_dyndns_edit.php | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/usr/local/www/services_dyndns_edit.php b/usr/local/www/services_dyndns_edit.php index adc6710..abb91ed 100644 --- a/usr/local/www/services_dyndns_edit.php +++ b/usr/local/www/services_dyndns_edit.php @@ -248,6 +248,7 @@ function _onTypeChange(type){ echo "selected"; echo ">{$ifdesc}\n"; } + unset($iflist); $grouplist = return_gateway_groups_array(); foreach ($grouplist as $name => $group) { echo "\n"; } + unset($grouplist); ?> - - - + $ifdesc) { + echo "\n"; + } + unset($iflist); + $grouplist = return_gateway_groups_array(); + foreach ($grouplist as $name => $group) { + echo "\n"; + } + unset($grouplist); + ?>
-- cgit v1.1