summaryrefslogtreecommitdiff
path: root/it_html.class
diff options
context:
space:
mode:
authorUrban Müller2007-11-08 18:36:20 +0000
committerUrban Müller2007-11-08 18:36:20 +0000
commit1214316cbf8d2e9c71d445ddb83184316f568394 (patch)
tree2016dacd9293a5863fb12048c44caf09ad1d403a /it_html.class
parentbe84c679a53798f70436f0762d0d024d085f6c7b (diff)
downloaditools-1214316cbf8d2e9c71d445ddb83184316f568394.tar.gz
itools-1214316cbf8d2e9c71d445ddb83184316f568394.tar.bz2
itools-1214316cbf8d2e9c71d445ddb83184316f568394.zip
renamed reloader param
Diffstat (limited to 'it_html.class')
-rw-r--r--it_html.class2
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;
}