diff options
author | Urban Müller | 2012-08-13 14:45:23 +0000 |
---|---|---|
committer | Urban Müller | 2012-08-13 14:45:23 +0000 |
commit | 8fbf1a3bd5fcdd40721ca3bfa299ecafdb66f48b (patch) | |
tree | f75424ff4a492c2e1eb777ef409320a956066d5c /it_html.class | |
parent | e72d6723cd8a290d53ccf08f5fed9e31d7aa832e (diff) | |
download | itools-8fbf1a3bd5fcdd40721ca3bfa299ecafdb66f48b.tar.gz itools-8fbf1a3bd5fcdd40721ca3bfa299ecafdb66f48b.tar.bz2 itools-8fbf1a3bd5fcdd40721ca3bfa299ecafdb66f48b.zip |
never use fasttag if it_tag is missing
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 1c34894..07199c6 100644 --- a/it_html.class +++ b/it_html.class @@ -139,7 +139,7 @@ function configure($p) $ithtml->p = $p + (array)$ithtml->p; $ithtml->hasnonewline = array_flip(explode(',', $ithtml->p['nonewlinetags'])); $ithtml->alwaysclose = array_flip(explode(',', $ithtml->p['alwaysclosetags'])); - $ithtml->fasttag = (function_exists("it_tag") && $ithtml->p['name'] == "it_html" && !$GLOBALS['debug_srclines'] && !$GLOBALS['debug_utf8check'] && $ithtml->p['charset'] == "utf-8" && !$ithtml->p['prettyprint']) || $GLOBALS['debug_fasttag']; + $ithtml->fasttag = function_exists("it_tag") && ($GLOBALS['debug_fasttag'] || ($ithtml->p['name'] == "it_html" && !$GLOBALS['debug_srclines'] && !$GLOBALS['debug_utf8check'] && $ithtml->p['charset'] == "utf-8" && !$ithtml->p['prettyprint'])); } /** |