mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 12:59:24 +02:00
* fix result:=func(result) instead of result:=func(s). Mantis #26746
git-svn-id: trunk@28698 -
This commit is contained in:
parent
4a90d7e3de
commit
72b521e365
@ -141,7 +141,7 @@ end;
|
||||
|
||||
function UnescapeHTML ( const S : String ) : String;
|
||||
begin
|
||||
Result := StringsReplace(result,['&','<','>','"',''','''],['&','<','>','"',#39,#39],[rfReplaceAll]);
|
||||
Result := StringsReplace(s,['&','<','>','"',''','''],['&','<','>','"',#39,#39],[rfReplaceAll]);
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user