From 790963cc4a21d6e2c9fcd59caa4db3290ed75b4e Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Wed, 24 Oct 2012 13:36:44 +0000 Subject: bugfix --- it_html.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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( -- cgit v1.2.3