two variables $public and $system were generating notices in lib/htmloutputter.php, removed because these two parameters are null by default.

This commit is contained in:
Brett Taylor 2009-08-11 15:53:37 +12:00
parent f2cd83dd51
commit d6bcc635bb
1 changed files with 1 additions and 1 deletions

View File

@ -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();