|
From: <jgr...@us...> - 2003-10-21 00:32:23
|
Update of /cvsroot/popfile/engine/UI
In directory sc8-pr-cvs1:/tmp/cvs-serv4483/UI
Modified Files:
HTML.pm
Log Message:
Put the link tags inside the head of the page
Index: HTML.pm
===================================================================
RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v
retrieving revision 1.218
retrieving revision 1.219
diff -C2 -d -r1.218 -r1.219
*** HTML.pm 20 Oct 2003 12:53:50 -0000 1.218
--- HTML.pm 20 Oct 2003 21:38:42 -0000 1.219
***************
*** 634,638 ****
$result .= "<meta http-equiv=\"Cache-Control\" content=\"no-cache\">\n";
! $result .= "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$self->{language__}{LanguageCharset}\">\n</head>\n";
$result .= "<link rel=\"icon\" href=\"favicon.ico\">\n";
--- 634,638 ----
$result .= "<meta http-equiv=\"Cache-Control\" content=\"no-cache\">\n";
! $result .= "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=$self->{language__}{LanguageCharset}\">\n";
$result .= "<link rel=\"icon\" href=\"favicon.ico\">\n";
***************
*** 655,658 ****
--- 655,660 ----
$result .= "href=\"skins/" . $self->config_( 'skin' ) . ".css\" title=\"" . $self->config_( 'skin' ) . "\">\n";
}
+
+ $result .= "</head>\n";
return $result;
|