From: Ilia Alshanetsky Date: Wed, 8 Jan 2003 02:44:50 +0000 (+0000) Subject: MFH X-Git-Tag: PHP_4_3_before_13561_fix~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8994f31b03d6a20ab3c7eacd907adef50d283984;p=php MFH --- diff --git a/main/main.c b/main/main.c index 3091173e2e..7c6bcb9152 100644 --- a/main/main.c +++ b/main/main.c @@ -751,13 +751,13 @@ static void php_message_handler_for_zend(long message, void *data) case ZMSG_FAILED_INCLUDE_FOPEN: { TSRMLS_FETCH(); - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed opening '%s' for inclusion (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path))); + php_error_docref("function.include" TSRMLS_CC, E_WARNING, "Failed opening '%s' for inclusion (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path))); } break; case ZMSG_FAILED_REQUIRE_FOPEN: { TSRMLS_FETCH(); - php_error_docref(NULL TSRMLS_CC, E_COMPILE_ERROR, "Failed opening required '%s' (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path))); + php_error_docref("function.require" TSRMLS_CC, E_COMPILE_ERROR, "Failed opening required '%s' (include_path='%s')", php_strip_url_passwd((char *) data), STR_PRINT(PG(include_path))); } break; case ZMSG_FAILED_HIGHLIGHT_FOPEN: {