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, next has been updated via 3c836db413a0a9811e1cee698b3322824a494c7a (commit) via 62a13aec4ca768fcb03b8639e6c5ad1596a19ccd (commit) from 9235b5c54bcfb465c5be7958c8e7e564b8bcc2d4 (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 3c836db413a0a9811e1cee698b3322824a494c7a Author: Michael Tremer michael.tremer@ipfire.org Date: Thu Apr 25 12:33:53 2013 +0200
Add modified services.cgi to core update 68.
commit 62a13aec4ca768fcb03b8639e6c5ad1596a19ccd Author: Joern-Ingo Weigert jiweigert@ipfire.org Date: Wed Apr 24 17:27:44 2013 +0200
services.cgi: Fix for depreciate-warning in httpd/error_log
This patch fixes the depreciate warning in /var/log/httpd/error_log not to use a hash as reference
So I changed: [...] print %link->{$key} [...]
To: [...] print $link{link} [...]
which solves the warning and should be good in future.
Joern-Ingo Weigert jiweigert@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/68/filelists/files | 1 + html/cgi-bin/services.cgi | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-)
Difference in files: diff --git a/config/rootfiles/core/68/filelists/files b/config/rootfiles/core/68/filelists/files index 10ccc2c..274e4e1 100644 --- a/config/rootfiles/core/68/filelists/files +++ b/config/rootfiles/core/68/filelists/files @@ -1,6 +1,7 @@ etc/system-release etc/issue etc/modprobe.d/blacklist +srv/web/ipfire/cgi-bin/services.cgi srv/web/ipfire/html/themes/ipfire/include/style.css srv/web/ipfire/html/themes/ipfire/include/functions.pl srv/web/ipfire/html/themes/maniac/include/style.css diff --git a/html/cgi-bin/services.cgi b/html/cgi-bin/services.cgi index 22a9ac7..131cad8 100644 --- a/html/cgi-bin/services.cgi +++ b/html/cgi-bin/services.cgi @@ -125,11 +125,11 @@ END $lines++; if ($lines % 2){ print "<tr bgcolor='$color{'color22'}'>\n<td align='left'>"; - print %link->{$key}; + print $link{$key}; print "</td>\n"; }else{ print "<tr bgcolor='$color{'color20'}'>\n<td align='left'>"; - print %link->{$key}; + print $link{$key}; print "</td>\n"; }
hooks/post-receive -- IPFire 2.x development tree