diff options
author | foobar <sniper@php.net> | 2001-06-01 05:01:50 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-06-01 05:01:50 +0000 |
commit | 328258ac08f5554056205a6c8851e9f7bce1af4a (patch) | |
tree | 9954ac33fb6959ef2a8b6173077206973b860475 /ext | |
parent | 99cb747f71722e3c104e5ddb92c683a984e33d40 (diff) | |
download | php-git-328258ac08f5554056205a6c8851e9f7bce1af4a.tar.gz |
Output something if password is not set.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/odbc/php_odbc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 355436f63b..7d769ea5e4 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -25,7 +25,7 @@ #ifdef HAVE_CONFIG_H #include "config.h" #endif - + #include "php.h" #include "php_globals.h" @@ -259,6 +259,8 @@ static PHP_INI_DISP(display_defPW) #else PUTS("********"); #endif + } else { + PUTS("<i>no value</i>"); } } |