summaryrefslogtreecommitdiff
path: root/it_html.class
diff options
context:
space:
mode:
authorChristian Weber2011-07-16 20:08:51 +0000
committerChristian Weber2011-07-16 20:08:51 +0000
commit629d5754c89e11a320583771bb22765a64333145 (patch)
tree8192e844c9d4f27ae3b83e3c93a30307e22b47ef /it_html.class
parent6f7fc16de6a62102f10df3f7e90f65eb78b52bae (diff)
downloaditools-629d5754c89e11a320583771bb22765a64333145.tar.gz
itools-629d5754c89e11a320583771bb22765a64333145.tar.bz2
itools-629d5754c89e11a320583771bb22765a64333145.zip
add thead and tbody tags (required for jquery-tables etc.)
Diffstat (limited to 'it_html.class')
-rw-r--r--it_html.class4
1 files changed, 2 insertions, 2 deletions
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 <link> tag to /favicon.ico if it exists
'favicon' => '', # If set, add favicon <link> 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";