diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-08-26 10:18:09 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2019-10-19 20:07:43 +0200 |
commit | a65f8429df8862e1f779274cbd99b6ce4348f1a6 (patch) | |
tree | afee5a140d53b83f4d0d32bc20e9fc22ced14b15 | |
parent | f2ef328c0cff0f5ebd2d677bc299c86e4c17360e (diff) |
Improve check
Change-Id: I8280a81eef2ced0ff0ace51ea9f094421abafe13
Reviewed-on: https://gerrit.libreoffice.org/78108
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
(cherry picked from commit 761e6dd25782420bf06e4a2ff3205a79b6cbb136)
Reviewed-on: https://gerrit.libreoffice.org/78129
Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
-rw-r--r-- | sfx2/source/doc/objmisc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx index a508aea86e12..3ec10565bc05 100644 --- a/sfx2/source/doc/objmisc.cxx +++ b/sfx2/source/doc/objmisc.cxx @@ -1371,7 +1371,7 @@ bool SfxObjectShell::UnTrustedScript(const OUString& rScriptURL) do { OUString aToken = sScript.getToken(0, '/', nIndex); - if (aToken.startsWithIgnoreAsciiCase("LibreLogo")) + if (aToken.startsWithIgnoreAsciiCase("LibreLogo") || aToken.indexOf('~') != -1) { return true; } |