Skip to content

Commit ddf733f

Browse files
committed
Fixed #18
Errors not displaying in some configurations
1 parent 2b98abd commit ddf733f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sapi/phpdbg/phpdbg.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "phpdbg_prompt.h"
2626
#include "phpdbg_bp.h"
2727
#include "phpdbg_break.h"
28+
#include "phpdbg_list.h"
2829
#include "phpdbg_utils.h"
2930
#include "phpdbg_set.h"
3031

@@ -609,7 +610,8 @@ const char phpdbg_ini_hardcoded[] =
609610
"display_errors=Off\n"
610611
"log_errors=On\n"
611612
"max_execution_time=0\n"
612-
"max_input_time=-1\n\0";
613+
"max_input_time=-1\n"
614+
"error_log=\n\0";
613615

614616
/* overwriteable ini defaults must be set in phpdbg_ini_defaults() */
615617
#define INI_DEFAULT(name, value) \

0 commit comments

Comments
 (0)