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 .= ''.$str->edit.' '; + $editstr .= ''.$str->edit.' '; /// Delete /// Can only delete the last category if there are no fields in it if ( ($categorycount > 1) or ($fieldcount == 0) ) { $editstr .= ''.$str->delete.' '; + $editstr .= '">'.$str->delete.' '; } else { - $editstr .= ' '; + $editstr .= ' '; } /// Move up if ($category->sortorder > 1) { - $editstr .= ''.$str->moveup.' '; + $editstr .= ''.$str->moveup.' '; } else { - $editstr .= ' '; + $editstr .= ' '; } /// Move down if ($category->sortorder < $categorycount) { - $editstr .= ''.$str->movedown.' '; + $editstr .= ''.$str->movedown.' '; } else { - $editstr .= ' '; + $editstr .= ' '; } @@ -335,25 +335,25 @@ function profile_field_icons ($field) { $datacount = count_records('user_info_data', 'fieldid', $field->id); /// Edit - $editstr .= ''.$str->edit.' '; + $editstr .= ''.$str->edit.' '; /// Delete $editstr .= ''.$str->delete.' '; + $editstr .= '">'.$str->delete.' '; /// Move up if ($field->sortorder > 1) { - $editstr .= ''.$str->moveup.' '; + $editstr .= ''.$str->moveup.' '; } else { - $editstr .= ' '; + $editstr .= ' '; } /// Move down if ($field->sortorder < $fieldcount) { - $editstr .= ''.$str->movedown.' '; + $editstr .= ''.$str->movedown.' '; } else { - $editstr .= ' '; + $editstr .= ' '; } return $editstr;