Commit Diff


commit - 026ac2c462910064c5c9143a96b17a920e6bbc58
commit + 336c64e8b8d86804e345f9ad6cd5e9690768d48d
blob - 9358e442cb79338b33110402f61e9bd695a9690d
blob + cdcadbcebe3a3e2d2650d7347672c6b37d2d468f
--- gotwebd/gotweb.c
+++ gotwebd/gotweb.c
@@ -676,14 +676,14 @@ gotweb_render_header(struct request *c)
 	    "<div id='gw_body'>\n"
 	    "<div id='header'>\n"
 	    "<div id='got_link'>"
-	    "<a href='%s' target='_sotd'>"
+	    "<a href='%s' target='_blank'>"
 	    "<img src='%s%s' alt='logo' id='logo' />"
 	    "</a>\n"
 	    "</div>\n"		/* #got_link */
 	    "</div>\n"		/* #header */
 	    "<div id='site_path'>\n"
 	    "<div id='site_link'>\n"
-	    "<a href='/%s?index_page=%d' alt='sitelink'>%s</a>",
+	    "<a href='/%s?index_page=%d'>%s</a>",
 	    srv->site_name,
 	    droot, srv->custom_css,
 	    srv->logo_url,
@@ -695,8 +695,8 @@ gotweb_render_header(struct request *c)
 	if (qs != NULL) {
 		if (qs->path != NULL) {
 			r = fcgi_printf(c, " / "
-			    "<a href='/%s?index_page=%d&path=%s&action=summary'"
-			    " alt='summlink'>%s</a>",
+			    "<a href='/%s?index_page=%d&path=%s&action=summary'>"
+			    "%s</a>",
 			    c->document_root, qs->index_page, qs->path,
 			    qs->path);
 			if (r == -1)