From 6d40f3317f00940a736e889947c8c3d2e048023c Mon Sep 17 00:00:00 2001 From: ovclas Date: Tue, 28 Aug 2012 06:15:31 +0000 Subject: [PATCH] issue 2234 change ssl_actions list in html page git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11107 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- common/tpl/common_layout.html | 2 +- common/tpl/mobile_layout.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/tpl/common_layout.html b/common/tpl/common_layout.html index 78c6a7fd5..a18cf965f 100644 --- a/common/tpl/common_layout.html +++ b/common/tpl/common_layout.html @@ -42,7 +42,7 @@ var request_uri = "{$request_uri}"; var xeVid = "{$vid}"; var current_mid = "{$mid}"; var waiting_message = "{$lang->msg_call_server}"; -var ssl_actions = new Array("{implode('","',$ssl_actions)}"); +var ssl_actions = new Array("{implode('","',array_keys($ssl_actions))}"); var default_url = "{Context::getDefaultUrl()}"; var http_port = {Context::get("_http_port")}; var https_port = {Context::get("_https_port")}; diff --git a/common/tpl/mobile_layout.html b/common/tpl/mobile_layout.html index c2ab5b842..7cabe0900 100644 --- a/common/tpl/mobile_layout.html +++ b/common/tpl/mobile_layout.html @@ -43,7 +43,7 @@ var xeVid = "{$vid}"; var current_mid = "{$mid}"; var waiting_message = "{$lang->msg_call_server}"; - var ssl_actions = new Array("{implode('","',$ssl_actions)}"); + var ssl_actions = new Array("{implode('","',array_keys($ssl_actions))}"); var default_url = "{Context::getDefaultUrl()}"; var http_port = {Context::get("_http_port")}; var https_port = {Context::get("_https_port")};