From: Sarven Capadisli Date: Wed, 30 Sep 2009 10:37:46 +0000 (+0000) Subject: Switched Doctype to XHTML 1.0 Strict (which best reflects the current X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eb85f16f773ff1df71d1af4fad85d40286d5f3a6;p=quix0rs-gnu-social.git Switched Doctype to XHTML 1.0 Strict (which best reflects the current grammar in use) --- diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index aa01f6b1d9..9e3a5b305e 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -113,7 +113,9 @@ class HTMLOutputter extends XMLOutputter // Browsers don't like it when xw->startDocument('1.0', 'UTF-8'); } - $this->xw->writeDTD('html'); + $this->xw->writeDTD('html', + '-//W3C//DTD XHTML 1.0 Strict//EN', + 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'); $language = $this->getLanguage();