summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2003-04-09 15:22:45 +0000
committerDerick Rethans <derick@php.net>2003-04-09 15:22:45 +0000
commitcb9a33bc14c9633ba8a3426d4bf2c54e34ebd85b (patch)
tree5320e7b304c032a4bdcf5816c1b5e33c9b4bcaee /ext
parent9b0239178cd748c2a59e80da71e3f5068c73d219 (diff)
downloadphp-git-cb9a33bc14c9633ba8a3426d4bf2c54e34ebd85b.tar.gz
- MFH: html output for Zend Extension version strings
Diffstat (limited to 'ext')
-rw-r--r--ext/standard/info.c6
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);
}