summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2017-11-23 16:42:40 +0100
committerJean-Pierre Ledure <jp@ledure.be>2017-11-23 16:42:40 +0100
commit008673c23db0c812eb0b48a1c29ab88b48aaa867 (patch)
tree4b6ac384a91dfb988058c36021e32118cc6a65b6
parent9d06ffadbec8c3b2281f3e04b6c612b86965c146 (diff)
Access2Base - FIX OutputStringToHtml
Remove useless ConvertToUrl function
-rw-r--r--wizards/source/access2base/Database.xba2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/access2base/Database.xba b/wizards/source/access2base/Database.xba
index e3dba90c9ac6..30b412fb9cfa 100644
--- a/wizards/source/access2base/Database.xba
+++ b/wizards/source/access2base/Database.xba
@@ -1574,7 +1574,7 @@ Dim i As Integer, l As Long
lNextQuote = InStr(lUrl, psString, &quot;&quot;&quot;&quot;, 1)
If lNextQuote = 0 Then lNextQuote = Len(psString) &apos; Should not happen but, if quoted string not closed ...
sUrl = Mid(psString, lUrl, lNextQuote - lUrl)
- sOutput = sOutput &amp; sPattern &amp; Iif(sPattern = &quot;&lt;a id=&quot;&quot;&quot;, sUrl, ConvertToUrl(sUrl)) &amp; &quot;&quot;&quot;&quot;
+ sOutput = sOutput &amp; sPattern &amp; sUrl &amp; &quot;&quot;&quot;&quot;
lCurrentChar = lNextQuote + 1
bQuote = False
bTagEnd = False