diff options
Diffstat (limited to 'library/Director/CustomVariable/CustomVariableNull.php')
-rw-r--r-- | library/Director/CustomVariable/CustomVariableNull.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/Director/CustomVariable/CustomVariableNull.php b/library/Director/CustomVariable/CustomVariableNull.php index f87ccfa..83e07f0 100644 --- a/library/Director/CustomVariable/CustomVariableNull.php +++ b/library/Director/CustomVariable/CustomVariableNull.php @@ -31,7 +31,7 @@ class CustomVariableNull extends CustomVariable if (! is_null($value)) { throw new ProgrammingError( 'Null can only be null, got %s', - var_export($value, 1) + var_export($value, true) ); } |