fixed AppendURLPathDelim

git-svn-id: trunk@9380 -
This commit is contained in:
vincents 2006-05-31 22:04:04 +00:00
parent e70bad90fa
commit 3292e89b04

View File

@ -742,7 +742,9 @@ end;
function AppendURLPathDelim(const URLPath: string): string;
begin
if (Result<>'') and (Result[length(Result)]<>'/') then
Result:=Result+'/';
Result:=URLPath+'/'
else
Result:=URLPath;
end;
function ExtractURLPath(const URL: string): string;