summaryrefslogtreecommitdiff
path: root/lib/htmloutputter.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2009-12-05 01:03:04 -0500
committerCraig Andrews <candrews@integralblue.com>2009-12-05 01:03:04 -0500
commit51f0dd5e37db0e8d2a8690655555d399249942df (patch)
tree33238b09ad63eaefdb2c6499da8bab59d91188ed /lib/htmloutputter.php
parentc08d7f1aa4ac235f524da3994c2f1aef3b0fd079 (diff)
Add configuration option to toggle the indenting of the output HTML. Defaults to indent enabled.
Diffstat (limited to 'lib/htmloutputter.php')
-rw-r--r--lib/htmloutputter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php
index fd448ced5..2091c6e2c 100644
--- a/lib/htmloutputter.php
+++ b/lib/htmloutputter.php
@@ -67,7 +67,7 @@ class HTMLOutputter extends XMLOutputter
* @param boolean $indent Whether to indent output, default true
*/
- function __construct($output='php://output', $indent=true)
+ function __construct($output='php://output', $indent=null)
{
parent::__construct($output, $indent);
}