cmv Wed Oct 2 10:27:32 2002 EDT
Modified files:
/php4/ext/standard info.c
Log:
Fix for SRM module (and maybe others). Header rows are now not HTML
escaped, so make sure you do this yourself in the modules.
Index: php4/ext/standard/info.c
diff -u php4/ext/standard/info.c:1.209 php4/ext/standard/info.c:1.210
--- php4/ext/standard/info.c:1.209 Fri Sep 27 12:05:47 2002
+++ php4/ext/standard/info.c Wed Oct 2 10:27:32 2002
@@ -18,7 +18,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: info.c,v 1.209 2002/09/27 16:05:47 cmv Exp $ */
+/* $Id: info.c,v 1.210 2002/10/02 14:27:32 cmv Exp $ */
#include "php.h"
#include "php_ini.h"
@@ -671,7 +671,7 @@
}
if (PG(html_errors)) {
PUTS("<th>");
- PUTS(php_info_html_esc(row_element TSRMLS_CC));
+ PUTS(row_element);
PUTS("</th>");
} else {
PUTS(row_element);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php