summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-01-10 16:00:08 +0000
committerDerick Rethans <derick@php.net>2002-01-10 16:00:08 +0000
commit645a94cd5e9e7e3de841802062bfe67589aab088 (patch)
tree7e15e1e05fdfc47fc240ff5029d11681e6d1918e /main
parent43c3d4495a06525faed88cbb83fad46122f02b27 (diff)
downloadphp-git-645a94cd5e9e7e3de841802062bfe67589aab088.tar.gz
- Make an E_NOTICE error type show 'Notice' instead of 'Warning'.
Diffstat (limited to 'main')
-rw-r--r--main/main.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/main/main.c b/main/main.c
index a4a44ac187..9483f4251c 100644
--- a/main/main.c
+++ b/main/main.c
@@ -391,8 +391,6 @@ static void php_error_cb(int type, const char *error_filename, const uint error_
error_type_str = "Parse error";
break;
case E_NOTICE:
- error_type_str = "Warning";
- break;
case E_USER_NOTICE:
error_type_str = "Notice";
break;