From: foobar Date: Fri, 5 Aug 2005 22:37:48 +0000 (+0000) Subject: No HTML output if html_errors is off (bug #34006) X-Git-Tag: RELEASE_2_0_0~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91860cf594b903b02c471eb1f5f2d815a4c997cb;p=php No HTML output if html_errors is off (bug #34006) --- diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index b3c10a568f..dc07182d52 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -314,7 +314,11 @@ static PHP_INI_DISP(display_defPW) PUTS("********"); #endif } else { - PUTS("no value"); + if (PG(html_errors)) { + PUTS("no value"); + } else { + PUTS("no value"); + } } } /* }}} */