From: Mike N. <mh...@us...> - 2004-05-27 15:12:35
|
Update of /cvsroot/phpwebsite-comm/themes/debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18212 Modified Files: theme.php Log Message: added content-style-type Index: theme.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/themes/debug/theme.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** theme.php 27 May 2004 14:57:03 -0000 1.9 --- theme.php 27 May 2004 15:12:23 -0000 1.10 *************** *** 2,5 **** --- 2,6 ---- if(stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml")){ header("Content-Type: application/xhtml+xml; charset=UTF-8"); + header("Content-Style-Type: text/css"); header("Content-Language: en-US"); $THEME["XML"] = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"; *************** *** 10,13 **** --- 11,15 ---- } else { header("Content-Type: text/html; charset=UTF-8"); + header("Content-Style-Type: text/css"); header("Content-Language: en-US"); $THEME["DOCTYPE"] = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">"; |