Posted: 12/19/2004 6:28:08 AM
Might not all be important for functioning, but still.
In-portal default theme
common/head.tpl
line 1
Double doctype declaration
Should be:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
line 7 - 8
<meta name="keywords" content="..." />
<meta name="description" content="..." />
Resulting pages show only these values ...
Not the keywords I entered in admin.
Line 11
<meta name="author" content="Intechnic Corporation." />
Should be the name of the webmaster
Line 20 - 21
<SCRIPT language="JavaScript" SRC="incs/sniffer2.js" type="text/javascript"></SCRIPT>
<SCRIPT language="JavaScript1.2" type="text/javascript">
Tags should be lowercase in xhtml:
<script language="JavaScript" src="incs/sniffer2.js" type="text/javascript"></script>
<script language="JavaScript1.2" type="text/javascript">
Same for line 83, 129, 131, 133
Line 133
Type missing
<SCRIPT Languge="JavaScript1.2">
Should be:
<script languge="JavaScript1.2" type="text/javascript">