This commit is contained in:
Kijin Sung 2018-12-18 17:44:15 +09:00
parent cbb9daddbf
commit 90f049caef
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@
<div class="x_control-group multiExample">
<label for="multiSelect" class="x_control-label"><em style="color:red">*</em> {$lang->options}</label>
<div class="x_controls">
<textarea rows="4" cols="42" id="multiSelect" name="default_value" style="vertical-align:top"><block cond="$default_value">{implode('<enter>', $default_value)}</block></textarea>
<textarea rows="4" cols="42" id="multiSelect" name="default_value" style="vertical-align:top"><block cond="$default_value">{implode('|@|', $default_value)}</block></textarea>
<p class="x_help-inline">{$lang->about_multi_type}</p>
</div>
</div>

View file

@ -101,7 +101,7 @@ jQuery(function($){
'getMemberAdminInsertJoinForm',
{member_join_form_srl:memberFormSrl},
function(ret){
var tpl = ret.tpl.replace(/<enter>/g, '\n');
var tpl = ret.tpl.replace(/\|@\|/g, '\n');
$('#extendForm').html(tpl);
if (checked)$('#extendForm #radio_'+checked).attr('checked', 'checked');