diff options
Diffstat (limited to 'tdehtml/xml/dom_docimpl.cpp')
-rw-r--r-- | tdehtml/xml/dom_docimpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdehtml/xml/dom_docimpl.cpp b/tdehtml/xml/dom_docimpl.cpp index 423a2a51e..b896d05a3 100644 --- a/tdehtml/xml/dom_docimpl.cpp +++ b/tdehtml/xml/dom_docimpl.cpp @@ -2345,7 +2345,7 @@ bool DocumentImpl::isURLAllowed(const TQString& url) const return false; // Prohibit non-file URLs if we are asked to. - if (!thisPart || thisPart->onlyLocalReferences() && newURL.protocol() != "file" && newURL.protocol() != "data") + if (!thisPart || (thisPart->onlyLocalReferences() && (newURL.protocol() != "file") && (newURL.protocol() != "data"))) return false; // do we allow this suburl ? |