From 63dbbf068b6d80ef22c1940f043367d57fcd3efe Mon Sep 17 00:00:00 2001 From: ikawhero Date: Fri, 12 Jan 2007 08:32:38 +0000 Subject: [PATCH] Strrrrrrict - keeping MD happy!!!! --- user/profile/index.php | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/user/profile/index.php b/user/profile/index.php index 919c2aa109..ac7a91d60d 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; -- 2.39.5