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, core35 has been updated via 89da528481f8e6b08063e88698b8889e7c5cf1bb (commit) from 48e1ea8d0dac9f201ca68c3de30ae0e54cbba5f9 (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 89da528481f8e6b08063e88698b8889e7c5cf1bb 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