mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-09 22:07:22 +01:00
* Fixed ipro bug where iphtml would generate the wrong address for images within a page
git-svn-id: trunk@17759 -
This commit is contained in:
parent
c3736e53d9
commit
23287ae2b7
@ -8893,7 +8893,12 @@ end;
|
||||
|
||||
function TIpHtml.BuildPath(const Ext: string): string;
|
||||
begin
|
||||
Result := BuildURL(CurURL, Ext);
|
||||
{$IFDEF IP_LAZARUS}
|
||||
if FDataProvider <> nil then
|
||||
Result := FDataProvider.BuildURL(CurURL,Ext)
|
||||
else
|
||||
{$ENDIF}
|
||||
Result := BuildURL(CurURL, Ext);
|
||||
end;
|
||||
|
||||
function TIpHtml.NewElement(EType : TElementType; Own: TIpHtmlNode) : PIpHtmlElement;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user