From 629d5754c89e11a320583771bb22765a64333145 Mon Sep 17 00:00:00 2001
From: Christian Weber
Date: Sat, 16 Jul 2011 20:08:51 +0000
Subject: add thead and tbody tags (required for jquery-tables etc.)
---
it_html.class | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
(limited to 'it_html.class')
diff --git a/it_html.class b/it_html.class
index 94dd2ee..00940b8 100644
--- a/it_html.class
+++ b/it_html.class
@@ -54,7 +54,7 @@ function it_html($p = array())
'show_favicon' => true, # If true, add tag to /favicon.ico if it exists
'favicon' => '', # If set, add favicon tag to this url
'staticallycallable' => 'Q,U,select', # Those methods are statically callable (have same arguments as global stubs) but are a bit slower
- 'tags' => 'a,b,br,button,div,em,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,label,legend,li,meta,noscript,p,span,style,table,td,textarea,th,tr,ul',
+ 'tags' => 'a,b,br,button,div,em,fieldset,form,h1,h2,h3,h4,h5,h6,hr,input,label,legend,li,meta,noscript,p,span,style,table,tbody,td,textarea,th,thead,tr,ul',
'title' => '', # HTML title (default: no title added)
'use_it_state' => false, # If true, generate code needed by state.js (aka 'history iframe')
);
@@ -305,7 +305,7 @@ function _tag($name, $args)
}
# Apply a kind of magic... this needs further investigation
- if (isset($data) || preg_match('/^(a|div|iframe|pre|script|span|td|textarea)$/i', $name))
+ if (isset($data) || preg_match('/^(a|div|iframe|pre|script|span|tbody|td|thead|textarea)$/i', $name))
$result .= ">$data$name>$newline";
elseif ($this->p['htmltype'] == 'html')
$result .= ">$newline";
--
cgit v1.2.3