]> granicus.if.org Git - php/commitdiff
Fix for SRM module (and maybe others). Header rows are now not HTML
authorColin Viebrock <cmv@php.net>
Wed, 2 Oct 2002 14:27:32 +0000 (14:27 +0000)
committerColin Viebrock <cmv@php.net>
Wed, 2 Oct 2002 14:27:32 +0000 (14:27 +0000)
escaped, so make sure you do this yourself in the modules.

ext/standard/info.c

index 3f7f3370a01f998a0271700aab4faf6416bc45a0..59157a5e41b2e2ce09ce3f5a526192fd75936c1e 100644 (file)
@@ -671,7 +671,7 @@ PHPAPI void php_info_print_table_header(int num_cols, ...)
                }
                if (PG(html_errors)) {
                        PUTS("<th>");
-                       PUTS(php_info_html_esc(row_element TSRMLS_CC));
+                       PUTS(row_element);
                        PUTS("</th>");
                } else {
                        PUTS(row_element);