summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorAndrey Andreev <narf@devilix.net>2016-01-20 10:50:51 +0100
committerAndrey Andreev <narf@devilix.net>2016-01-20 10:50:51 +0100
commit1d1568036d9bfb335817e4f0b9ad9db403406776 (patch)
tree429230516bd49c4a8c155bea48212d7c54c5c3eb /system
parente5563f8a1d939666b70b2deac10b0e368f6de2e5 (diff)
parentb6774cbeb11ac7bc5bd694c1da87ed77e9d4f9fb (diff)
Merge pull request #4389 from sebastienadam/default_html5
[ci skip] Change default doctype to 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;