zeev Sun Feb 2 10:51:39 2003 EDT
Modified files: (Branch: PHP_4_3)
/php4/ext/standard info.c
Log:
Fix phpinfo() display of Zend extensions
Index: php4/ext/standard/info.c
diff -u php4/ext/standard/info.c:1.218.2.4 php4/ext/standard/info.c:1.218.2.5
--- php4/ext/standard/info.c:1.218.2.4 Tue Jan 28 00:01:46 2003
+++ php4/ext/standard/info.c Sun Feb 2 10:51:37 2003
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: info.c,v 1.218.2.4 2003/01/28 05:01:46 fmk Exp $ */
+/* $Id: info.c,v 1.218.2.5 2003/02/02 15:51:37 zeev Exp $ */
#include "php.h"
#include "php_ini.h"
@@ -514,7 +514,7 @@
}
PUTS("This program makes use of the Zend Scripting Language Engine:");
PUTS(PG(html_errors)?"<br />":"\n");
- PUTS(zend_version);
+ zend_html_puts(zend_version, strlen(zend_version) TSRMLS_CC);
php_info_print_box_end();
efree(php_uname);
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php