diff options
Diffstat (limited to 'library/Director/PlainObjectRenderer.php')
-rw-r--r-- | library/Director/PlainObjectRenderer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/Director/PlainObjectRenderer.php b/library/Director/PlainObjectRenderer.php index 4dadf4f..e613f1f 100644 --- a/library/Director/PlainObjectRenderer.php +++ b/library/Director/PlainObjectRenderer.php @@ -105,7 +105,7 @@ class PlainObjectRenderer } elseif (is_string($object)) { return self::renderString($object); } else { - return '(UNKNOWN TYPE) ' . var_export($object, 1); + return '(UNKNOWN TYPE) ' . var_export($object, true); } } |