%D -> %0D

This commit is contained in:
Glenn Maynard
2006-02-09 00:08:40 +00:00
parent 478de001c6
commit 00f89eb307
+1 -1
View File
@@ -943,7 +943,7 @@ RString URLEncode( const RString &sStr )
if( t >= '!' && t <= 'z' ) if( t >= '!' && t <= 'z' )
sOutput += t; sOutput += t;
else else
sOutput += "%" + ssprintf( "%X", t ); sOutput += "%" + ssprintf( "%02X", t );
} }
return sOutput; return sOutput;
} }