diff options
author | Urban Müller | 2012-10-24 13:36:44 +0000 |
---|---|---|
committer | Urban Müller | 2012-10-24 13:36:44 +0000 |
commit | 790963cc4a21d6e2c9fcd59caa4db3290ed75b4e (patch) | |
tree | 50d2b0e313d81fb34b7de227e1f103d9fd9c5fe3 /it_html.class | |
parent | e5bef1ca2d3391b12483922e180d86cff991e854 (diff) | |
download | itools-790963cc4a21d6e2c9fcd59caa4db3290ed75b4e.tar.gz itools-790963cc4a21d6e2c9fcd59caa4db3290ed75b4e.tar.bz2 itools-790963cc4a21d6e2c9fcd59caa4db3290ed75b4e.zip |
bugfix
Diffstat (limited to 'it_html.class')
-rw-r--r-- | it_html.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_html.class b/it_html.class index 65e7e2a..0544371 100644 --- a/it_html.class +++ b/it_html.class @@ -67,7 +67,6 @@ class it_html function it_html($p = array()) { # Default configuration of html class - $this->p['notexported'] = trim($p['notexported'] . ',configure,sanitize', ','); $this->p = $p + array( 'charset' => ini_get('default_charset') ?: 'iso-8859-1', 'doctype' => null, # Custom doctype (will usually be calculated from htmltype) @@ -89,6 +88,7 @@ function it_html($p = array()) 'title' => '', # HTML title (default: no title added) 'use_it_state' => false, # If true, generate code needed by state.js (aka 'history iframe') ); + $this->p['notexported'] = trim($p['notexported'] . ',configure,sanitize', ','); # We know these doctypes. If you need something else, supply 'doctype' in p $this->doctypes = array( |