From 3ebfaaf3f12c898a4f3c8fdf153649472562aa90 Mon Sep 17 00:00:00 2001 From: Cameron Date: Tue, 7 Mar 2017 10:28:05 -0800 Subject: [PATCH] The site's HTML tag may now be customized by defining "HTMLTAG" inside the theme.php file. (similar to "BODYTAG") --- e107_core/templates/header_default.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e107_core/templates/header_default.php b/e107_core/templates/header_default.php index 264a849b3..823e45e65 100644 --- a/e107_core/templates/header_default.php +++ b/e107_core/templates/header_default.php @@ -121,7 +121,8 @@ if (!function_exists("parseheader")) if(!defined("XHTML4")) { echo "\n"; - echo "\n"; + $htmlTag = ""; + echo deftrue('HTMLTAG', $htmlTag)."\n"; echo "\n"; echo "\n"; }