diff options
author | Urban Müller | 2007-11-08 18:36:20 +0000 |
---|---|---|
committer | Urban Müller | 2007-11-08 18:36:20 +0000 |
commit | 1214316cbf8d2e9c71d445ddb83184316f568394 (patch) | |
tree | 2016dacd9293a5863fb12048c44caf09ad1d403a /it_html.class | |
parent | be84c679a53798f70436f0762d0d024d085f6c7b (diff) | |
download | itools-1214316cbf8d2e9c71d445ddb83184316f568394.tar.gz itools-1214316cbf8d2e9c71d445ddb83184316f568394.tar.bz2 itools-1214316cbf8d2e9c71d445ddb83184316f568394.zip |
renamed reloader param
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 5632b78..a73bba6 100644 --- a/it_html.class +++ b/it_html.class @@ -125,7 +125,7 @@ function html($args) $html = ($p['doctype'] ? $p['doctype'] : $this->doctypes[$p['htmltype']]) . "\n" . '<html ' . ($p['htmltype'] == "xhtml" ? 'xmlns="http://www.w3.org/1999/xhtml" ' : '') . ($p['htmltype'] == "xhtml-mobile" ? 'xml:lang' : 'lang') . "=\"{$p['lang']}\">\n" . $data . ($p['omit_endhtml'] ? '' : "</html>\n"); - return EDC('re') ? it::replace(array('<!DOCTYPE.*<head>' => ''), $html, array('singleline' => true)) : $html; + return EDC('upd') ? it::replace(array('<!DOCTYPE.*<head>' => ''), $html, array('singleline' => true)) : $html; } |