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 1d6384bed903eb6c42f20881ecf3bca0d8f33d43 (commit) from 4d79d4d740c86797052ebb48a4fc1f344661727b (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 1d6384bed903eb6c42f20881ecf3bca0d8f33d43 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 23 15:46:55 2010 +0100
Fix outgoing_fw monday checkbox.
-----------------------------------------------------------------------
Summary of changes: html/cgi-bin/outgoingfw.cgi | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
Difference in files: diff --git a/html/cgi-bin/outgoingfw.cgi b/html/cgi-bin/outgoingfw.cgi index ed87e0d..3b740ab 100644 --- a/html/cgi-bin/outgoingfw.cgi +++ b/html/cgi-bin/outgoingfw.cgi @@ -217,7 +217,7 @@ if ($outfwsettings{'ACTION'} eq $Lang::tr{'edit'}) { @configline = split( /;/, $configentry ); - $configline[10] = "on" if not exists $configline[11]; + $configline[10] = "on" if not exists $configline[10]; $configline[11] = "on" if not exists $configline[11]; $configline[12] = "on" if not exists $configline[12]; $configline[13] = "on" if not exists $configline[13]; @@ -270,7 +270,7 @@ if ($outfwsettings{'ACTION'} eq $Lang::tr{'delete'}) { @configline = split( /;/, $configentry ); - $configline[10] = "on" if not exists $configline[11]; + $configline[10] = "on" if not exists $configline[10]; $configline[11] = "on" if not exists $configline[11]; $configline[12] = "on" if not exists $configline[12]; $configline[13] = "on" if not exists $configline[13]; @@ -377,7 +377,7 @@ END $outfwsettings{'DPORT'} = $configline[8]; $outfwsettings{'LOG'} = $configline[9]; - $configline[10] = "on" if not exists $configline[11]; + $configline[10] = "on" if not exists $configline[10]; $configline[11] = "on" if not exists $configline[11]; $configline[12] = "on" if not exists $configline[12]; $configline[13] = "on" if not exists $configline[13];
hooks/post-receive -- IPFire 2.x development tree