Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1:/tmp/cvs-serv26749
Modified Files:
HTML.pm
Log Message:
Favicon fix from texasfett
Index: HTML.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v
retrieving revision 1.203
retrieving revision 1.204
diff -C2 -d -r1.203 -r1.204
*** HTML.pm 15 Sep 2003 14:55:36 -0000 1.203
--- HTML.pm 15 Sep 2003 15:46:24 -0000 1.204
***************
*** 606,609 ****
--- 606,611 ----
$result .= "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$self->{language__}{LanguageCharset}\">\n</head>\n";
+ $result .= "<link rel=\"icon\" href=\"favicon.ico\">\n";
+
# If we are handling the shutdown page, then send the CSS along with the
# page to avoid a request back from the browser _after_ we've shutdown,
***************
*** 622,630 ****
$result .= "<link rel=\"stylesheet\" type=\"text/css\" ";
$result .= "href=\"skins/" . $self->config_( 'skin' ) . ".css\" title=\"" . $self->config_( 'skin' ) . "\">\n";
- $result .= "<link rel=\"shortcut icon\" type=\"image/x-icon\" ";
- $result .= "href=\"favicon.ico\">\n";
}
-
- $result .= "<link rel=\"icon\" href=\"popfile.ico\" type=\"image/ico\">\n";
return $result;
--- 624,628 ----
|