diff --git a/phpBB/adm/style/acp_profile.html b/phpBB/adm/style/acp_profile.html
index 3546873f6c..25120fe71c 100644
--- a/phpBB/adm/style/acp_profile.html
+++ b/phpBB/adm/style/acp_profile.html
@@ -201,17 +201,11 @@
{fields.FIELD_TYPE} |
{fields.L_ACTIVATE_DEACTIVATE} | {L_TRANSLATE} |
-
-
- {ICON_MOVE_UP_DISABLED}
- {ICON_MOVE_DOWN}
-
- {ICON_MOVE_UP}
- {ICON_MOVE_DOWN}
-
- {ICON_MOVE_UP}
- {ICON_MOVE_DOWN_DISABLED}
-
+ |
+ {ICON_MOVE_UP_DISABLED}
+ {ICON_MOVE_UP}
+ {ICON_MOVE_DOWN_DISABLED}
+ {ICON_MOVE_DOWN}
{ICON_EDIT}
diff --git a/phpBB/includes/acp/acp_profile.php b/phpBB/includes/acp/acp_profile.php
index 4e8145009f..570bde1ac7 100644
--- a/phpBB/includes/acp/acp_profile.php
+++ b/phpBB/includes/acp/acp_profile.php
@@ -299,6 +299,14 @@ class acp_profile
WHERE field_order IN ($field_order, " . (($action == 'move_up') ? $field_order - 1 : $field_order + 1) . ')';
$db->sql_query($sql);
+ if ($request->is_ajax())
+ {
+ $json_response = new \phpbb\json_response;
+ $json_response->send(array(
+ 'success' => (bool) $db->sql_affectedrows(),
+ ));
+ }
+
break;
case 'create':
|