SVN commit 716794 by mueller: make it less invalid perl M +2 -1 post-commit.pl --- trunk/KDE/kde-common/svn/hooks/post-commit.pl #716793:716794 @@ -455,7 +455,8 @@ sub add_to_bugz_cc($) { - my $email = shift . '@bugs.kde.org'; + my ($email) = @_; + $email = "$email\@bugs.kde.org"; push(@bugz_cclist, $email) unless (grep($_ eq $email, @bugz_cclist)); }