diff options
| author | Bob Weinand <bobwei9@hotmail.com> | 2013-12-24 13:11:57 +0100 |
|---|---|---|
| committer | Bob Weinand <bobwei9@hotmail.com> | 2013-12-24 13:11:57 +0100 |
| commit | 8064d8dfd6fc5a0433efcd5c38665c450f842888 (patch) | |
| tree | fa5c56e7d2c704d860899795acfdaf10d8b93bd2 | |
| parent | 6f63609251a9fef9cb64d8c0007166d0b737e78c (diff) | |
| download | php-git-8064d8dfd6fc5a0433efcd5c38665c450f842888.tar.gz | |
Fixed #18
Errors not displaying in some configurations
| -rw-r--r-- | phpdbg.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -25,6 +25,7 @@ #include "phpdbg_prompt.h" #include "phpdbg_bp.h" #include "phpdbg_break.h" +#include "phpdbg_list.h" #include "phpdbg_utils.h" #include "phpdbg_set.h" @@ -609,7 +610,8 @@ const char phpdbg_ini_hardcoded[] = "display_errors=Off\n" "log_errors=On\n" "max_execution_time=0\n" -"max_input_time=-1\n\0"; +"max_input_time=-1\n" +"error_log=\n\0"; /* overwriteable ini defaults must be set in phpdbg_ini_defaults() */ #define INI_DEFAULT(name, value) \ |
