From: Colin Viebrock Date: Wed, 2 Oct 2002 14:27:32 +0000 (+0000) Subject: Fix for SRM module (and maybe others). Header rows are now not HTML X-Git-Tag: MODERN_SYMMETRIC_SESSION_BEHAVIOUR_20021003~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f871f3870df893c569b3a440c13759f2496acd04;p=php Fix for SRM module (and maybe others). Header rows are now not HTML escaped, so make sure you do this yourself in the modules. --- diff --git a/ext/standard/info.c b/ext/standard/info.c index 3f7f3370a0..59157a5e41 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -671,7 +671,7 @@ PHPAPI void php_info_print_table_header(int num_cols, ...) } if (PG(html_errors)) { PUTS(""); - PUTS(php_info_html_esc(row_element TSRMLS_CC)); + PUTS(row_element); PUTS(""); } else { PUTS(row_element);