From 1861f1bae38472d7927d114a99d74ab40cd0eeee Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sun, 11 Aug 2002 09:52:06 +0000 Subject: [PATCH] Minor fix for html_errors=on in php_error_docref. --- main/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/main.c b/main/main.c index 685e787f13..6ccacb233e 100644 --- a/main/main.c +++ b/main/main.c @@ -434,7 +434,7 @@ PHPAPI void php_verror(const char *docref, const char *params, int type, const c } } if (PG(html_errors)) { - php_error(type, "%s(%s) [%s]: %s", get_active_function_name(TSRMLS_C), params, docref_root, docref, docref, docref_target, buffer); + php_error(type, "%s(%s) [%s]: %s", get_active_function_name(TSRMLS_C), params, docref_root, docref, docref_target, docref, buffer); } else { php_error(type, "%s(%s) [%s%s%s]: %s", get_active_function_name(TSRMLS_C), params, docref_root, docref, docref_target, buffer); } -- 2.50.1