diff --git a/header.inc.php.template b/header.inc.php.template index d1f96d3936..d24a5168e4 100644 --- a/header.inc.php.template +++ b/header.inc.php.template @@ -30,8 +30,6 @@ $phpgw_info["server"]["server_root"] = "__SERVER_ROOT__"; $phpgw_info["server"]["include_root"] = "__INCLUDE_ROOT__"; - /* This is the basic include needed on each page for phpGroupWare application compliance */ - $phpgw_info["flags"]["htmlcompliant"] = __HTMLCOMPLIANT__; $phpgw_domain["default"] = array ( "db_host" => "__DB_HOST__", diff --git a/setup/config.php b/setup/config.php index 5bea214216..2655b0ed0f 100644 --- a/setup/config.php +++ b/setup/config.php @@ -286,6 +286,18 @@ + + + Use pure HTML compliant code (not fully working yet): + + + + + + Would like like phpGroupWare to check for new version
when admins login ?: > diff --git a/setup/createheader.php b/setup/createheader.php index 28a78648a7..0483a95117 100644 --- a/setup/createheader.php +++ b/setup/createheader.php @@ -131,23 +131,6 @@ Server Root
"> Include Root
"> - htmlcompliant
- - DB Host
">Hostname/IP of Databaseserver DB Name
">Name of Database DB User
">Name of DB User as phpgroupware has to connect as diff --git a/setup/sql/common_default_records.inc.php b/setup/sql/common_default_records.inc.php index d334458d1a..295f141808 100644 --- a/setup/sql/common_default_records.inc.php +++ b/setup/sql/common_default_records.inc.php @@ -46,6 +46,7 @@ $db->query("insert into config (config_name, config_value) values ('httpproxy_server', '')"); $db->query("insert into config (config_name, config_value) values ('httpproxy_port', '')"); $db->query("insert into config (config_name, config_value) values ('showpoweredbyon', 'bottom')"); + $db->query("insert into config (config_name, config_value) values ('htmlcompliant', 'False')"); $db->query("insert into config (config_name, config_value) values ('checkfornewversion', 'False')"); $db->query("insert into config (config_name, config_value) values ('freshinstall', 'True')"); }