diff options
author | Brett Taylor <brett@webfroot.co.nz> | 2009-08-11 15:53:37 +1200 |
---|---|---|
committer | Brett Taylor <brett@webfroot.co.nz> | 2009-08-11 15:53:37 +1200 |
commit | d6bcc635bb7a1d5884f4691e7b74152b8cd9c9bc (patch) | |
tree | f484e7d1facb0e01d170273486f9108f30c0b325 /lib/htmloutputter.php | |
parent | f2cd83dd51e856022e75b0e3c5bffb333bf10c8e (diff) |
two variables $public and $system were generating notices in lib/htmloutputter.php, removed because these two parameters are null by default.
Diffstat (limited to 'lib/htmloutputter.php')
-rw-r--r-- | lib/htmloutputter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 604597116..683a5e0b7 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -113,7 +113,7 @@ class HTMLOutputter extends XMLOutputter // Browsers don't like it when <?xml it output for non-xhtml documents $this->xw->startDocument('1.0', 'UTF-8'); } - $this->xw->writeDTD('html', $public, $system); + $this->xw->writeDTD('html'); $language = $this->getLanguage(); |