This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from 4f5cfb8 Provide string sanitizers. Esp. a sanitizer for X2Go session IDs. new 6db96a8 convert sanitizer type to lowercase always The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: X2Go/Utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit 6db96a87768940d00f5a9a019fc6cfcd3bfa8c3f Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Apr 15 15:56:19 2014 +0200 convert sanitizer type to lowercase always --- X2Go/Utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/X2Go/Utils.pm b/X2Go/Utils.pm index 8936a27..9de854a 100644 --- a/X2Go/Utils.pm +++ b/X2Go/Utils.pm @@ -85,7 +85,7 @@ sub source_environment { # Over-zealous string sanitizer that makes perl strict and perl -T happy... sub sanitizer { - my $type = $_[0]; + my $type = lc($_[0]); my $string = $_[1]; if ($type eq "anumazcs") { $string =~ s/[^a-zA-Z0-9]//g; -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goserver.git