
Originally Posted by
mzimmers
I'm getting an HTML validation error on the shipping label page. The error message is:
The offending line seems to be:
Code:
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>" />
Originally it didn't have the "/" before the ">" so I added it, but am getting the same error. Any ideas?
Thanks.
It could be the ending quotes on content="text/html; <-- "
Try it this way
Code:
content="text/html"; charset="<?php echo CHARSET; ?>"
Bookmarks