Huge commit that adds one space between unsubscribe and mark read in group list view.

This commit is contained in:
Retro_Guy 2024-11-06 06:59:57 -07:00
parent 4e952479b6
commit 01d71b5646
1 changed files with 1 additions and 1 deletions

View File

@ -756,7 +756,7 @@ function groups_show($gruppen)
$groupdisplay .= '<p class="np_group_user_tools">';
$groupdisplay .= '<a class="np_group_user_tools" href="index.php?unsub=' . urlencode($g->name) . '">(unsubscribe)</a>';
if ($new) {
$groupdisplay .= '<a class="np_group_user_tools" href="index.php?mark_read=' . urlencode($g->name) . '">(mark read)</a>';
$groupdisplay .= '&nbsp;<a class="np_group_user_tools" href="index.php?mark_read=' . urlencode($g->name) . '">(mark read)</a>';
}
$groupdisplay .= '</p>';
} else {