Commit 9b3d5076 by Scott

Fix default userfields positioning

Closes #509
parent 577323fa
...@@ -724,25 +724,25 @@ function qa_db_default_userfields_sql() ...@@ -724,25 +724,25 @@ function qa_db_default_userfields_sql()
$profileFields = array( $profileFields = array(
array( array(
'title' => 'name', 'title' => 'name',
'position' => 0, 'position' => 1,
'flags' => 0, 'flags' => 0,
'permit' => QA_PERMIT_ALL, 'permit' => QA_PERMIT_ALL,
), ),
array( array(
'title' => 'location', 'title' => 'location',
'position' => 1, 'position' => 2,
'flags' => 0, 'flags' => 0,
'permit' => QA_PERMIT_ALL, 'permit' => QA_PERMIT_ALL,
), ),
array( array(
'title' => 'website', 'title' => 'website',
'position' => 2, 'position' => 3,
'flags' => QA_FIELD_FLAGS_LINK_URL, 'flags' => QA_FIELD_FLAGS_LINK_URL,
'permit' => QA_PERMIT_ALL, 'permit' => QA_PERMIT_ALL,
), ),
array( array(
'title' => 'about', 'title' => 'about',
'position' => 3, 'position' => 4,
'flags' => QA_FIELD_FLAGS_MULTI_LINE, 'flags' => QA_FIELD_FLAGS_MULTI_LINE,
'permit' => QA_PERMIT_ALL, '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