diff options
author | Christian Schneider | 2018-05-07 16:31:40 +0200 |
---|---|---|
committer | Christian Schneider | 2018-05-07 16:31:40 +0200 |
commit | 7f41132b49ab09232a653cc6d2f3b2e14d0a139b (patch) | |
tree | 96a50b2238370db414231f06ab9155801fd29ea1 /it_html.class | |
parent | 49cb7482b57046d69c15eea7737716229ba08ef8 (diff) | |
download | itools-7f41132b49ab09232a653cc6d2f3b2e14d0a139b.tar.gz itools-7f41132b49ab09232a653cc6d2f3b2e14d0a139b.tar.bz2 itools-7f41132b49ab09232a653cc6d2f3b2e14d0a139b.zip |
Disable the redefine function warning per default, renable it in the search-specific auto_prepend instead
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 5828438..7e24021 100644 --- a/it_html.class +++ b/it_html.class @@ -88,7 +88,7 @@ function __construct($p = array()) 'title' => '', # HTML title (default: no title added) 'use_it_state' => false, # If true, generate code needed by state.js (aka 'history iframe') 'srclines' => $GLOBALS['debug_srclines'], # append stackdump to each tag - 'error_on_redefine' => true, # Generate it::error when trying to redefine function for a tag + 'error_on_redefine' => false, # Generate it::error when trying to redefine function for a tag ); $this->p['notexported'] = trim($p['notexported'] . ',configure,sanitize,comment', ','); |