diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-10-02 16:20:18 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-10-02 16:20:18 +0200 |
commit | 79e11d892e2ff26636a647e91371aaef2c5d435d (patch) | |
tree | 48148f714597b96541f6feecb877fd6d31f1eff2 /src/webpage.cpp | |
parent | Simpler KIO management (no more metadata) (diff) | |
download | rekonq-79e11d892e2ff26636a647e91371aaef2c5d435d.tar.xz |
moving from about: protocol to rekonq: protocol :D
This fix some issues, about some "stupid" sites whose js
sends strange "about:blank" requests (just found 2!!)
Diffstat (limited to 'src/webpage.cpp')
-rw-r--r-- | src/webpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webpage.cpp b/src/webpage.cpp index 3f5e6244..59c777d6 100644 --- a/src/webpage.cpp +++ b/src/webpage.cpp @@ -107,7 +107,7 @@ bool WebPage::acceptNavigationRequest(QWebFrame *frame, const QNetworkRequest &r return false; } - if (request.url().scheme() == QLatin1String("about")) + if (request.url().scheme() == QLatin1String("rekonq")) { Application::instance()->loadUrl( request.url() ); return false; |