diff options
author | Urban Müller | 2012-02-14 14:57:49 +0000 |
---|---|---|
committer | Urban Müller | 2012-02-14 14:57:49 +0000 |
commit | 8fb2ae1eeb524de9df519809243962f8bf975bcb (patch) | |
tree | e145061209cee156a46b0525c9748df777a7f05f | |
parent | f2cbc2efbf354c613b8b12422cc8d2c1be3a2e40 (diff) | |
download | itools-8fb2ae1eeb524de9df519809243962f8bf975bcb.tar.gz itools-8fb2ae1eeb524de9df519809243962f8bf975bcb.tar.bz2 itools-8fb2ae1eeb524de9df519809243962f8bf975bcb.zip |
better stackdump
-rw-r--r-- | it_text.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_text.class b/it_text.class index b4a5a19..871fc93 100644 --- a/it_text.class +++ b/it_text.class @@ -227,7 +227,7 @@ function transmogrify($text, $values = null, $label = null) { $value = is_object($value) ? $value->$key : $value[$key]; if ($value === null && $values && $label) # do not test in $GLOBALS mode - it::error(array('title' => "No value given for text variable {" . $key ."} in label $label", 'skipfiles' => "text|auto_prepend")); + it::error(array('title' => "No value given for text variable {" . $key ."} in label $label", 'backtraceskip' => 3)); } $result .= $value; |