mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
issue 2469 added logic to setting layout in member(not use layout).
git-svn-id: http://xe-core.googlecode.com/svn/branches/luminous@11454 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
83c63acaab
commit
a41334388a
3 changed files with 2 additions and 6 deletions
|
|
@ -189,6 +189,7 @@
|
|||
$args->image_mark = $args->image_mark?'Y':'N';
|
||||
if($args->signature!='Y') $args->signature = 'N';
|
||||
$args->identifier = $all_args->identifier;
|
||||
$args->layout_srl = $args->layout_srl ? $args->layout_srl : null;
|
||||
|
||||
// set default
|
||||
$all_args->is_nick_name_public = 'Y';
|
||||
|
|
|
|||
|
|
@ -63,12 +63,6 @@
|
|||
|
||||
if (!$config->max_error_count) $config->max_error_count = 10;
|
||||
if (!$config->max_error_count_time) $config->max_error_count_time = 300;
|
||||
if (!$config->layout_srl)
|
||||
{
|
||||
$oModuleModel = &getModel('module');
|
||||
$defaultModuleInfo = $oModuleModel->getDefaultMid();
|
||||
$config->layout_srl = $defaultModuleInfo->layout_srl;
|
||||
}
|
||||
|
||||
if (!$config->signature_editor_skin || $config->signature_editor_skin == 'default') $config->signature_editor_skin = 'xpresseditor';
|
||||
if (!$config->sel_editor_colorset) $config->sel_editor_colorset = 'white';
|
||||
|
|
|
|||
|
|
@ -88,6 +88,7 @@
|
|||
<p class="q"><label for="layout">{$lang->layout}</label></p>
|
||||
<p class="a">
|
||||
<select id="layout" name="layout_srl">
|
||||
<option value="0">{$lang->notuse}</option>
|
||||
<option loop="$layout_list => $key,$val" value="{$val->layout_srl}" selected="selected"|cond="$val->layout_srl == $config->layout_srl">{$val->title} ({$val->layout})</option>
|
||||
</select>
|
||||
</p>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue