From: Derick Rethans Date: Thu, 10 Jan 2002 16:00:08 +0000 (+0000) Subject: - Make an E_NOTICE error type show 'Notice' instead of 'Warning'. X-Git-Tag: PRE_ISSET_PATCH~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=645a94cd5e9e7e3de841802062bfe67589aab088;p=php - Make an E_NOTICE error type show 'Notice' instead of 'Warning'. --- 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;