zeev Sun Feb 2 10:53:05 2003 EDT
Modified files:
/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.225 php4/ext/standard/info.c:1.226
--- php4/ext/standard/info.c:1.225 Tue Jan 28 00:02:12 2003
+++ php4/ext/standard/info.c Sun Feb 2 10:53:04 2003
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: info.c,v 1.225 2003/01/28 05:02:12 fmk Exp $ */
+/* $Id: info.c,v 1.226 2003/02/02 15:53:04 zeev Exp $ */
#include "php.h"
#include "php_ini.h"
@@ -511,7 +511,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