diff options
| author | Stefan Esser <sesser@php.net> | 2003-03-06 20:31:20 +0000 |
|---|---|---|
| committer | Stefan Esser <sesser@php.net> | 2003-03-06 20:31:20 +0000 |
| commit | af4aa97d1ec853836f70601cb9666794476cd140 (patch) | |
| tree | 9f674907222edd525084a127db195cddf82afbb7 /ext/db/db.c | |
| parent | 2d40fe2222f6b252423f3a1965f82104ba59a504 (diff) | |
| download | php-git-af4aa97d1ec853836f70601cb9666794476cd140.tar.gz | |
Fixing functionicalls with variable number of parameters...
Diffstat (limited to 'ext/db/db.c')
| -rw-r--r-- | ext/db/db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/db/db.c b/ext/db/db.c index 338d8dd581..b45c7e4df5 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -258,7 +258,7 @@ PHP_MINFO_FUNCTION(db) { /* this isn't pretty ... should break out the info a bit more (cmv) */ php_info_print_box_start(0); - php_printf(php_get_info_db()); + php_printf("%s", php_get_info_db()); php_info_print_box_end(); } /* }}} */ |
