diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/notifications.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/notifications.php b/mod/notifications.php index fa5165b0b..b860f6018 100644 --- a/mod/notifications.php +++ b/mod/notifications.php @@ -151,7 +151,7 @@ function notifications_content(&$a) { foreach($r as $rr) { $o .= '<li>' . sprintf('%s (%s) : ', $rr['name'],$rr['email']) . '<a href="regmod/allow/' . $rr['hash'] .'">' . t('Approve') - . '</a> - <href="regmod/deny/' . $rr['hash'] . '">' . t('Deny') . '</a></li>' . "\r\n"; + . '</a> - <a href="regmod/deny/' . $rr['hash'] . '">' . t('Deny') . '</a></li>' . "\r\n"; } $o .= "</ul>"; } |