r15720 - /scripts/qa/qareport-chlog.cgi

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Feb 27 09:13:50 UTC 2008


Author: dmn
Date: Wed Feb 27 09:13:49 2008
New Revision: 15720

URL: http://svn.debian.org/wsvn/?sc=1&rev=15720
Log:
Use ' for apostrophe and " for quotes instead of " for apostrophes and nothing for quotes

Modified:
    scripts/qa/qareport-chlog.cgi

Modified: scripts/qa/qareport-chlog.cgi
URL: http://svn.debian.org/wsvn/scripts/qa/qareport-chlog.cgi?rev=15720&op=diff
==============================================================================
--- scripts/qa/qareport-chlog.cgi (original)
+++ scripts/qa/qareport-chlog.cgi Wed Feb 27 09:13:49 2008
@@ -35,7 +35,8 @@
 my $text = $svn->{$pkg}{ ($rel eq 'rel')?'text' : 'un_text' };
 
 $text =~ s/&/&/g;
-$text =~ s/'/"/g;
+$text =~ s/'/'/g;
+$text =~ s/"/"/g;
 $text =~ s/</&lt;/g;
 $text =~ s/>/&gt;/g;
 $text =~ s{\r?\n}{<br/>}g;




More information about the Pkg-perl-cvs-commits mailing list