diff options
author | Derek Allard <derek.allard@ellislab.com> | 2009-04-14 21:27:38 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2009-04-14 21:27:38 +0200 |
commit | 93bddd16200be9eaf623dd6114860792097f11ac (patch) | |
tree | 634c59b790c401a596c22be2227ab44e5e040479 /system/helpers/html_helper.php | |
parent | 8ab36a54484b7f6a9d19a35c2fc6e959d15ab3b8 (diff) |
doctype helper default value was missing a "1".
Diffstat (limited to 'system/helpers/html_helper.php')
-rw-r--r-- | system/helpers/html_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index e552b86b4..3117035bf 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -246,7 +246,7 @@ if ( ! function_exists('img')) */ if ( ! function_exists('doctype')) { - function doctype($type = 'xhtml-strict') + function doctype($type = 'xhtml1-strict') { global $_doctypes; |