From: Wez Furlong Date: Sun, 11 Aug 2002 09:52:06 +0000 (+0000) Subject: Minor fix for html_errors=on in php_error_docref. X-Git-Tag: php-4.3.0dev_zend2_alpha3~146 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1861f1bae38472d7927d114a99d74ab40cd0eeee;p=php Minor fix for html_errors=on in php_error_docref. --- 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); }