From 79e11d892e2ff26636a647e91371aaef2c5d435d Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Fri, 2 Oct 2009 16:20:18 +0200 Subject: 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!!) --- src/history.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/history.cpp') diff --git a/src/history.cpp b/src/history.cpp index 7e5cb741..aac3a66d 100644 --- a/src/history.cpp +++ b/src/history.cpp @@ -115,8 +115,8 @@ void HistoryManager::addHistoryEntry(const QString &url) { QUrl cleanUrl(url); - // don't store about: urls (home page related) - if(cleanUrl.scheme() == QString("about")) + // don't store rekonq: urls (home page related) + if(cleanUrl.scheme() == QString("rekonq")) return; cleanUrl.setPassword(QString()); -- cgit v1.2.1