1
1
Fork 0

deny link not clickable on admin approval notification page

This commit is contained in:
Friendika 2011-05-20 15:11:36 -07:00
commit 5f20925220
3 changed files with 4 additions and 4 deletions

View file

@ -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>";
}