mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
#18428031 : fixed a javascript error occurred if browser_title contains special characters,
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6963 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
d345d77d85
commit
ede3bff586
1 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@
|
||||||
var obj= xGetElementById('_'+id);
|
var obj= xGetElementById('_'+id);
|
||||||
var sObj = xGetElementById(id);
|
var sObj = xGetElementById(id);
|
||||||
sObj.value = module_srl;
|
sObj.value = module_srl;
|
||||||
obj.value = browser_title+' ('+mid+')';
|
obj.value = decodeURIComponent(browser_title.replace(/\+/g," "))+' ('+mid+')';
|
||||||
}
|
}
|
||||||
<!--@if($ftp_info && $ftp_info->ftp_password && $ftp_info->ftp_user)-->
|
<!--@if($ftp_info && $ftp_info->ftp_password && $ftp_info->ftp_user)-->
|
||||||
var pwd = '{$pwd}';
|
var pwd = '{$pwd}';
|
||||||
|
|
@ -53,7 +53,7 @@
|
||||||
<th scope="row"><div>{$lang->start_module}</div></th>
|
<th scope="row"><div>{$lang->start_module}</div></th>
|
||||||
<td>
|
<td>
|
||||||
<input type="hidden" name="index_module_srl" id="target_module" value="{$start_module->index_module_srl}" />
|
<input type="hidden" name="index_module_srl" id="target_module" value="{$start_module->index_module_srl}" />
|
||||||
<input type="text" name="_target_module" id="_target_module" class="inputTypeText w300" value="{$start_module->mid} ({$start_module->browser_title})" readonly="readonly" /><a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single')}" onclick="popopen(this.href,'ModuleSelect');return false;" class="button green"><span>{$lang->cmd_select}</span></a>
|
<input type="text" name="_target_module" id="_target_module" class="inputTypeText w300" value="{$start_module->mid} ({htmlspecialchars($start_module->browser_title)})" readonly="readonly" /><a href="{getUrl('','module','module','act','dispModuleSelectList','id','target_module','type','single')}" onclick="popopen(this.href,'ModuleSelect');return false;" class="button green"><span>{$lang->cmd_select}</span></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue