From mboxrd@z Thu Jan 1 00:00:00 1970 From: git@ipfire.org To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 3c836db413a0a9811e1cee698b3322824a494c7a Date: Thu, 25 Apr 2013 12:47:09 +0200 Message-ID: <20130425104716.6907720686@argus.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0622333208856530872==" List-Id: --===============0622333208856530872== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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 Date: Thu Apr 25 12:33:53 2013 +0200 Add modified services.cgi to core update 68. commit 62a13aec4ca768fcb03b8639e6c5ad1596a19ccd Author: Joern-Ingo Weigert Date: Wed Apr 24 17:27:44 2013 +0200 services.cgi: Fix for depreciate-warning in httpd/error_log =20 This patch fixes the depreciate warning in /var/log/httpd/error_log not to use a hash as reference =20 So I changed: [...] print %link->{$key} [...] =20 To: [...] print $link{link} [...] =20 which solves the warning and should be good in future. =20 Joern-Ingo Weigert ----------------------------------------------------------------------- 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 "\n"; - print %link->{$key}; + print $link{$key}; print "\n"; }else{ print "\n"; - print %link->{$key}; + print $link{$key}; print "\n"; } =20 hooks/post-receive -- IPFire 2.x development tree --===============0622333208856530872==--