diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 14:21:47 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 14:21:47 -0500 |
commit | ff901332d2a64766472921d3d3742dc913540508 (patch) | |
tree | 60b450710e7e7f1471949fbdf2d3351bed53bef9 /lib/xmloutputter.php | |
parent | 802863907337d6e1b463c28390499017b1d4e5f1 (diff) |
Fix the constructor for Action
Also, fix the startXML() method
Diffstat (limited to 'lib/xmloutputter.php')
-rw-r--r-- | lib/xmloutputter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xmloutputter.php b/lib/xmloutputter.php index 9ca0c91bd..64935da40 100644 --- a/lib/xmloutputter.php +++ b/lib/xmloutputter.php @@ -72,7 +72,6 @@ class XMLOutputter $this->xw = new XMLWriter(); $this->xw->openURI($output); $this->xw->setIndent($indent); - $this->xw->startDocument('1.0', 'UTF-8'); } /** @@ -87,6 +86,7 @@ class XMLOutputter function startXML($doc=null, $public=null, $system=null) { + $this->xw->startDocument('1.0', 'UTF-8'); if ($doc) { $this->xw->writeDTD($doc, $public, $system); } |