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; function AppendURLPathDelim(const URLPath: string): string;
begin begin
if (Result<>'') and (Result[length(Result)]<>'/') then if (Result<>'') and (Result[length(Result)]<>'/') then
Result:=Result+'/'; Result:=URLPath+'/'
else
Result:=URLPath;
end; end;
function ExtractURLPath(const URL: string): string; function ExtractURLPath(const URL: string): string;