diff options
author | Derick Rethans <derick@php.net> | 2003-04-09 15:22:45 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2003-04-09 15:22:45 +0000 |
commit | cb9a33bc14c9633ba8a3426d4bf2c54e34ebd85b (patch) | |
tree | 5320e7b304c032a4bdcf5816c1b5e33c9b4bcaee /ext | |
parent | 9b0239178cd748c2a59e80da71e3f5068c73d219 (diff) | |
download | php-git-cb9a33bc14c9633ba8a3426d4bf2c54e34ebd85b.tar.gz |
- MFH: html output for Zend Extension version strings
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/info.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index ed17ac2ba8..ba8c7e899c 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -515,7 +515,11 @@ PHPAPI void php_print_info(int flag TSRMLS_DC) } PUTS("This program makes use of the Zend Scripting Language Engine:"); PUTS(PG(html_errors)?"<br />":"\n"); - zend_html_puts(zend_version, strlen(zend_version) TSRMLS_CC); + if (PG(html_errors)) { + zend_html_puts(zend_version, strlen(zend_version) TSRMLS_CC); + } else { + PUTS(zend_version); + } php_info_print_box_end(); efree(php_uname); } |