diff options
author | Somsubhra bairi <somsubhra.bairi@gmail.com> | 2013-03-12 10:49:10 +0530 |
---|---|---|
committer | Somsubhra bairi <somsubhra.bairi@gmail.com> | 2013-03-12 10:49:10 +0530 |
commit | cc304242ef8e5819bb06d369a8d5512993ffd90c (patch) | |
tree | 17f45880dc34134002b752e4c4d1d645aefa9978 | |
parent | Fix && clean up fullscreen mode (diff) | |
download | rekonq-cc304242ef8e5819bb06d369a8d5512993ffd90c.tar.xz |
Added missing reload button when webpage fails to load
BUG: 316235
-rw-r--r-- | src/webtab/webpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webtab/webpage.cpp b/src/webtab/webpage.cpp index b61f66cf..6274b882 100644 --- a/src/webtab/webpage.cpp +++ b/src/webtab/webpage.cpp @@ -688,7 +688,7 @@ QString WebPage::errorPage(QNetworkReply *reply) msg += i18n("try checking the <a href=\"%1\">Wayback Machine</a>", QL1S("http://wayback.archive.org/web/*/") + urlString); msg += i18n(" or the <a href=\"%1\">Google Cache</a>.", QL1S("http://google.com/search?q=cache:") + urlString); msg += QL1S("</p>"); - + msg += QL1S("<h5>") + i18n("<a href='%1'>Try Again</a>", urlString) + QL1S("</h5>"); msg += QL1S("</td></tr></table>"); // done. Replace variables and show it |