This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, master has been updated via 98c474a4aa6802cc07088eafb60eb47a8b315d10 (commit) from 15834b62223bdbd98832a0429eea2b5eddbce56f (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit 98c474a4aa6802cc07088eafb60eb47a8b315d10 Author: Christian Schmidt maniacikarus@ipfire.org Date: Fri Dec 10 12:10:47 2010 +0100
Fixed a bug in the outgoingfw where preselected groups where not set if you edit a rule.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/44/filelists/files | 1 + html/cgi-bin/outgoingfw.cgi | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/44/filelists/files b/config/rootfiles/core/44/filelists/files index de75056..866acf0 100644 --- a/config/rootfiles/core/44/filelists/files +++ b/config/rootfiles/core/44/filelists/files @@ -12,6 +12,7 @@ srv/web/ipfire/cgi-bin/proxy.cgi srv/web/ipfire/cgi-bin/speed.cgi srv/web/ipfire/cgi-bin/vpnmain.cgi srv/web/ipfire/cgi-bin/ids.cgi +srv/web/ipfire/cgi-bin/outgoingfw.cgi srv/web/ipfire/cgi-bin/pppsetup.cgi srv/web/ipfire/html/images/urlfilter/copy.gif var/ipfire/general-functions.pl diff --git a/html/cgi-bin/outgoingfw.cgi b/html/cgi-bin/outgoingfw.cgi index a15b243..295bde4 100644 --- a/html/cgi-bin/outgoingfw.cgi +++ b/html/cgi-bin/outgoingfw.cgi @@ -699,7 +699,8 @@ END ; my @ipgroups = qx(ls $configpath/ipgroups/); foreach (sort @ipgroups){ - print "\t\t\t\t\t<option value='$_' $selected{'SNET'}{'$_'}>$_</option>\n"; + chomp($_); + print "\t\t\t\t\t<option value='$_' $selected{'SNET'}{$_}>$_</option>\n"; } print <<END </optgroup> @@ -708,7 +709,8 @@ END ; my @macgroups = qx(ls $configpath/macgroups/); foreach (sort @macgroups){ - print "\t\t\t\t\t<option value='$_' $selected{'SNET'}{'$_'}>$_</option>\n"; + chomp($_); + print "\t\t\t\t\t<option value='$_' $selected{'SNET'}{$_}>$_</option>\n"; } print <<END </optgroup> @@ -844,4 +846,4 @@ END }
&Header::closebigbox(); -&Header::closepage(); \ No newline at end of file +&Header::closepage();
hooks/post-receive -- IPFire 2.x development tree