When making a dir2dat, the "clean" routine overdoes it when translating the apostrophes, Fixed by changing order of code.
This commit is contained in:
@@ -57,11 +57,11 @@ namespace ROMVault2
|
|||||||
|
|
||||||
private static string clean(string s)
|
private static string clean(string s)
|
||||||
{
|
{
|
||||||
|
s = s.Replace("&", "&");
|
||||||
s = s.Replace("\"", """);
|
s = s.Replace("\"", """);
|
||||||
s = s.Replace("'", "'");
|
s = s.Replace("'", "'");
|
||||||
s = s.Replace("<", "<");
|
s = s.Replace("<", "<");
|
||||||
s = s.Replace(">", ">");
|
s = s.Replace(">", ">");
|
||||||
s = s.Replace("&", "&");
|
|
||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user