commit | 93bddd16200be9eaf623dd6114860792097f11ac | [log] [tgz] |
---|---|---|
author | Derek Allard <derek.allard@ellislab.com> | Tue Apr 14 19:27:38 2009 +0000 |
committer | Derek Allard <derek.allard@ellislab.com> | Tue Apr 14 19:27:38 2009 +0000 |
tree | 634c59b790c401a596c22be2227ab44e5e040479 | |
parent | 8ab36a54484b7f6a9d19a35c2fc6e959d15ab3b8 [diff] [blame] |
doctype helper default value was missing a "1".
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index e552b86..3117035 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php
@@ -246,7 +246,7 @@ */ if ( ! function_exists('doctype')) { - function doctype($type = 'xhtml-strict') + function doctype($type = 'xhtml1-strict') { global $_doctypes;