diff --git a/views/group/helper_functions.php b/views/group/helper_functions.php index 42c3d9e..abfe2b3 100644 --- a/views/group/helper_functions.php +++ b/views/group/helper_functions.php @@ -45,7 +45,7 @@ function watchGroupButton($group) { $text = $hasWatched ? t('Stop watching the group') : t('Watch the group'); if($canWatch && !$hasWatched) { - $icon = watchIcon($hasWatched); + $icon = watchIcon($hasWatched, $text); $output .= anchor( $icon, "/group/watch/{$groupID}/" . Gdn::session()->transientKey(), @@ -54,7 +54,7 @@ function watchGroupButton($group) { ); } else if($hasWatched) { - $icon = watchIcon($hasWatched); + $icon = watchIcon($hasWatched,$text); $output .= anchor( $icon, "/group/unwatch/{$groupID}/" . Gdn::session()->transientKey(),