diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-28 12:22:43 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-28 12:22:43 +0200 |
commit | 397cf794b975e8128a6d155957229106cd065d0c (patch) | |
tree | 1b3cf1411918f7d7030267a5b8400d9cd495d1d5 /program | |
parent | b79cc545ec020f7dd4bd83dcd06af3cf2b1fcaff (diff) |
Don't terminate script execution when parsed template doesn't exist
and parse was called with 3rd argument = false.
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_output_html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_output_html.php b/program/include/rcube_output_html.php index a071ee354..00378d7d2 100644 --- a/program/include/rcube_output_html.php +++ b/program/include/rcube_output_html.php @@ -400,7 +400,7 @@ class rcube_output_html extends rcube_output 'line' => __LINE__, 'file' => __FILE__, 'message' => 'Error loading template for '.$realname - ), true, true); + ), true, $write); return false; } |