%D -> %0D
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user