mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 07:19:31 +02:00
fixed AppendURLPathDelim
git-svn-id: trunk@9380 -
This commit is contained in:
parent
e70bad90fa
commit
3292e89b04
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user