diff options
author | Wez Furlong <wez@php.net> | 2002-08-11 09:52:06 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-08-11 09:52:06 +0000 |
commit | 1861f1bae38472d7927d114a99d74ab40cd0eeee (patch) | |
tree | a265d81b74af0e0eaf664c9737c8b5688ee013f8 /main/main.c | |
parent | 42355837c1e220a423c66165a0a197f2866259c8 (diff) | |
download | php-git-1861f1bae38472d7927d114a99d74ab40cd0eeee.tar.gz |
Minor fix for html_errors=on in php_error_docref.
Diffstat (limited to 'main/main.c')
-rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) [<a href='%s%s%s'>%s</a>]: %s", get_active_function_name(TSRMLS_C), params, docref_root, docref, docref, docref_target, buffer); + php_error(type, "%s(%s) [<a href='%s%s%s'>%s</a>]: %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); } |