summaryrefslogtreecommitdiffstats
path: root/system/helpers/html_helper.php
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2009-04-14 21:27:38 +0200
committerDerek Allard <derek.allard@ellislab.com>2009-04-14 21:27:38 +0200
commit93bddd16200be9eaf623dd6114860792097f11ac (patch)
tree634c59b790c401a596c22be2227ab44e5e040479 /system/helpers/html_helper.php
parent8ab36a54484b7f6a9d19a35c2fc6e959d15ab3b8 (diff)
doctype helper default value was missing a "1".
Diffstat (limited to 'system/helpers/html_helper.php')
-rw-r--r--system/helpers/html_helper.php2
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;