diff options
author | Jean-Pierre Ledure <jp@ledure.be> | 2015-12-05 12:33:52 +0100 |
---|---|---|
committer | Jean-Pierre Ledure <jp@ledure.be> | 2015-12-05 12:33:52 +0100 |
commit | f2e525eb2707a98a0d0a1bdeaf054c3981ce5f6b (patch) | |
tree | 4a62c794b18e53a01c960f5b16aa209836e98e6a /wizards | |
parent | b0658929bea09386f524879228b35996375537f4 (diff) |
Access2Base - OutputTo HTML
Add <span> in the list of acceptable html tags
Change-Id: I23c57ad1ef889fd511111f6d969feaafb9d0f5b8
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/access2base/Database.xba | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wizards/source/access2base/Database.xba b/wizards/source/access2base/Database.xba index 15d9d40e49a3..e28159e43027 100644 --- a/wizards/source/access2base/Database.xba +++ b/wizards/source/access2base/Database.xba @@ -1187,6 +1187,7 @@ Dim i As Integer, l As Long "&quot;", "&amp;", "&apos;", "&lt;", "&gt;", "&nbsp;" _ , "<pre>", "</pre>", "<br>" _ , "<a href=""", "<a id=""", "</a>", "<img src=""" _ + , "<span style=""", "</span>" _ , "<b>", "</b>", "<u>", "</u>", "<i>", "</i>" _ ) @@ -1212,7 +1213,7 @@ Dim i As Integer, l As Long ' Process hyperlink patterns and keep others If Len(sPattern) > 0 Then Select Case LCase(sPattern) - Case "<a href=""", "<a id=""", "<img src=""" + Case "<a href=""", "<a id=""", "<img src=""", "<span style=""" ' Up to next quote, url-encode lNextQuote = 0 lUrl = lPattern + Len(sPattern) |