summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-04-07 17:30:54 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-04-07 17:30:54 +0000
commit87b9a905eb68dca81a91a3c0b9cdb8ffaafc7691 (patch)
tree96057410d36cd51a3e214343b9a477e5029f5ca4
parent5b79dbe36f40740a18fe5e559558879f40faa143 (diff)
downloadnetsurf-87b9a905eb68dca81a91a3c0b9cdb8ffaafc7691.tar.gz
netsurf-87b9a905eb68dca81a91a3c0b9cdb8ffaafc7691.tar.bz2
Fix typo and unhide imagecache from about:about
svn path=/trunk/netsurf/; revision=13823
-rw-r--r--content/fetchers/about.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/fetchers/about.c b/content/fetchers/about.c
index 0c93a1dd6..78a1507f6 100644
--- a/content/fetchers/about.c
+++ b/content/fetchers/about.c
@@ -552,7 +552,7 @@ struct about_handlers about_handler_list[] = {
{ "about", SLEN("about"), NULL, fetch_about_about_handler, true },
{ "logo", SLEN("logo"), NULL, fetch_about_logo_handler, true },
/* details about the cache */
- { "imagecache", SLEN("iamgecache"), NULL, fetch_about_imagecache_handler, true },
+ { "imagecache", SLEN("imagecache"), NULL, fetch_about_imagecache_handler, false },
/* The default blank page */
{ "blank", SLEN("blank"), NULL, fetch_about_blank_handler, true }
};