summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorSébastien Adam <sebastien.adam.webdev@gmail.com>2016-01-20 09:25:22 +0100
committerSébastien Adam <sebastien.adam.webdev@gmail.com>2016-01-20 09:25:22 +0100
commitb6774cbeb11ac7bc5bd694c1da87ed77e9d4f9fb (patch)
tree429230516bd49c4a8c155bea48212d7c54c5c3eb /system
parente5563f8a1d939666b70b2deac10b0e368f6de2e5 (diff)
Default doctype is now HTML 5
Diffstat (limited to 'system')
-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 becd9a00c..696f0eee2 100644
--- a/system/helpers/html_helper.php
+++ b/system/helpers/html_helper.php
@@ -229,7 +229,7 @@ if ( ! function_exists('doctype'))
* @param string type The doctype to be generated
* @return string
*/
- function doctype($type = 'xhtml1-strict')
+ function doctype($type = 'html5')
{
static $doctypes;