diff --git a/user/profile/index.php b/user/profile/index.php
index 919c2aa109f..ac7a91d60d1 100644
--- a/user/profile/index.php
+++ b/user/profile/index.php
@@ -285,30 +285,30 @@ function profile_category_icons ($category) {
$fieldcount = count_records('user_info_field', 'categoryid', $category->id);
/// Edit
- $editstr .= '
';
+ $editstr .= '
';
/// Delete
/// Can only delete the last category if there are no fields in it
if ( ($categorycount > 1) or ($fieldcount == 0) ) {
$editstr .= '
';
+ $editstr .= '">
';
} else {
- $editstr .= '
';
+ $editstr .= '
';
}
/// Move up
if ($category->sortorder > 1) {
- $editstr .= '
';
+ $editstr .= '
';
} else {
- $editstr .= '
';
+ $editstr .= '
';
}
/// Move down
if ($category->sortorder < $categorycount) {
- $editstr .= '
';
+ $editstr .= '
';
} else {
- $editstr .= '
';
+ $editstr .= '
';
}
@@ -335,25 +335,25 @@ function profile_field_icons ($field) {
$datacount = count_records('user_info_data', 'fieldid', $field->id);
/// Edit
- $editstr .= '
';
+ $editstr .= '
';
/// Delete
$editstr .= '
';
+ $editstr .= '">
';
/// Move up
if ($field->sortorder > 1) {
- $editstr .= '
';
+ $editstr .= '
';
} else {
- $editstr .= '
';
+ $editstr .= '
';
}
/// Move down
if ($field->sortorder < $fieldcount) {
- $editstr .= '
';
+ $editstr .= '
';
} else {
- $editstr .= '
';
+ $editstr .= '
';
}
return $editstr;