From c9c9e841717fe861972ee74994192aef92b22f6b Mon Sep 17 00:00:00 2001 From: Anthony Calandra Date: Sun, 14 Sep 2014 14:14:06 -0400 Subject: [PATCH] Added div to safegaurd against overflow (for aesthetic reasons). --- Sources/Load.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Load.php b/Sources/Load.php index 0418aa9..80a0cd3 100644 --- a/Sources/Load.php +++ b/Sources/Load.php @@ -1142,7 +1142,7 @@ function loadMemberContext($user, $display_custom_fields = false) // Remove first element in $stars to get the badges. array_shift($stars); if (count($stars) > 0) { - $group_stars .= '
  • '; + $group_stars .= '
  • '; $count = 0; // Change this as you see fit... $badgeTooltips = array( @@ -1178,7 +1178,7 @@ function loadMemberContext($user, $display_custom_fields = false) $group_stars .= ''; } - $group_stars .= '
  • '; + $group_stars .= ''; } } // xxx end changed for awards