mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-21 11:22:34 +09:00
#19653080 New Feature : You can use HTML5 DTD as a document type.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8279 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
52f37ded17
commit
283f1e6334
13 changed files with 49 additions and 5 deletions
|
|
@ -62,6 +62,9 @@
|
|||
$use_ssl = Context::get('use_ssl');
|
||||
if(!$use_ssl) $use_ssl = 'none';
|
||||
|
||||
$use_html5 = Context::get('use_html5');
|
||||
if(!$use_html5) $use_html5 = 'N';
|
||||
|
||||
$http_port = Context::get('http_port');
|
||||
$https_port = Context::get('https_port');
|
||||
|
||||
|
|
@ -77,6 +80,7 @@
|
|||
$db_info->use_rewrite = $use_rewrite;
|
||||
$db_info->use_sso = $use_sso;
|
||||
$db_info->use_ssl = $use_ssl;
|
||||
$db_info->use_html5 = $use_html5;
|
||||
$db_info->use_mobile_view = $use_mobile_view;
|
||||
if($http_port) $db_info->http_port = (int) $http_port;
|
||||
else if($db_info->http_port) unset($db_info->http_port);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue