summaryrefslogtreecommitdiff
path: root/src/protocolhandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocolhandler.cpp')
-rw-r--r--src/protocolhandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocolhandler.cpp b/src/protocolhandler.cpp
index a9b14b6f..c66af403 100644
--- a/src/protocolhandler.cpp
+++ b/src/protocolhandler.cpp
@@ -136,9 +136,9 @@ QString ProtocolHandler::dirHandling(const KUrl &url)
return errStr;
}
- // display "not found" page
- QString notfoundFilePath = KStandardDirs::locate("data", "rekonq/htmls/notfound.html");
- QFile file(notfoundFilePath);
+ // display "rekonq info" page
+ QString infoFilePath = KStandardDirs::locate("data", "rekonq/htmls/rekonqinfo.html");
+ QFile file(infoFilePath);
bool isOpened = file.open(QIODevice::ReadOnly);
if (!isOpened)