Commit Diff


commit - 1f6ec0684239b7d7a1b63040f34db7d348fe5cb7
commit + 0b3823fddac066935c55c29fba27822c4b70ddce
blob - 47031c77bce94400b4f9954d55e4fe06835ff4b4
blob + 85333b7e962aeb7d7758f8dad8a5ae6ea8764c27
--- 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)