mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
issue 160 fixed memberinfo in install script
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9124 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
635321ca12
commit
0185574302
3 changed files with 13 additions and 4 deletions
|
|
@ -63,7 +63,7 @@
|
|||
$items = array('user_id', 'password', 'user_name', 'nick_name', 'email_address', 'find_account_question', 'homepage', 'blog', 'birthday', 'signature', 'profile_image', 'image_name', 'image_mark');
|
||||
$mustRequireds = array('email_address', 'nick_name','password', 'find_account_question');
|
||||
$orgRequireds = array('email_address', 'nick_name','password', 'find_account_question');
|
||||
$orgUse = array('email_address', 'password', 'find_account_question');
|
||||
$orgUse = array('email_address', 'nick_name', 'password', 'find_account_question');
|
||||
$list_order = array();
|
||||
foreach($items as $key){
|
||||
unset($signupItem);
|
||||
|
|
@ -79,7 +79,10 @@
|
|||
$signupItem->max_width = $config->{$key.'_max_width'};
|
||||
$signupItem->max_height = $config->{$key.'_max_height'};
|
||||
}
|
||||
$list_order[] = $signupItem;
|
||||
if ($signupItem->isIdentifier)
|
||||
array_unshift($list_order, $signupItem);
|
||||
else
|
||||
$list_order[] = $signupItem;
|
||||
}
|
||||
if (is_array($extendItems)){
|
||||
foreach($extendItems as $form_srl=>$item_info){
|
||||
|
|
@ -295,7 +298,10 @@
|
|||
$signupItem->max_width = $config->{$key.'_max_width'};
|
||||
$signupItem->max_height = $config->{$key.'_max_height'};
|
||||
}
|
||||
$list_order[] = $signupItem;
|
||||
if ($signupItem->isIdentifier)
|
||||
array_unshift($list_order, $signupItem);
|
||||
else
|
||||
$list_order[] = $signupItem;
|
||||
}
|
||||
if (is_array($extendItems)){
|
||||
foreach($extendItems as $form_srl=>$item_info){
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue