Commit 9b3d5076 by Scott

Fix default userfields positioning

Closes #509
parent 577323fa
......@@ -724,25 +724,25 @@ function qa_db_default_userfields_sql()
$profileFields = array(
array(
'title' => 'name',
'position' => 0,
'position' => 1,
'flags' => 0,
'permit' => QA_PERMIT_ALL,
),
array(
'title' => 'location',
'position' => 1,
'position' => 2,
'flags' => 0,
'permit' => QA_PERMIT_ALL,
),
array(
'title' => 'website',
'position' => 2,
'position' => 3,
'flags' => QA_FIELD_FLAGS_LINK_URL,
'permit' => QA_PERMIT_ALL,
),
array(
'title' => 'about',
'position' => 3,
'position' => 4,
'flags' => QA_FIELD_FLAGS_MULTI_LINE,
'permit' => QA_PERMIT_ALL,
),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment