mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
Fix #1460 current_url 값이 ture으로 출력되는 문제 고침
This commit is contained in:
parent
15e66c2c6a
commit
234ad09867
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@
|
|||
var current_url = "{\Rhymix\Framework\URL::encodeIdna($current_url)}";
|
||||
var request_uri = "{\Rhymix\Framework\URL::encodeIdna($request_uri)}";
|
||||
var current_lang = xe.current_lang = "{$lang_type}";
|
||||
var current_mid = {json_encode((isset($mid) && $mid) ?: null)};
|
||||
var current_mid = {json_encode(isset($mid) ? $mid : null)};
|
||||
var http_port = {Context::get("_http_port") ?: 'null'};
|
||||
var https_port = {Context::get("_https_port") ?: 'null'};
|
||||
var enforce_ssl = {$site_module_info->security === 'always' ? 'true' : 'false'};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue