The link for the "Ban" button has a leading "/" which causes it to go to a non-existant page. To fix this change the line 201 of ip.module from:
l(t('Ban IP'), '/admin/user/rules/add/' . $record['ip'] . '/host'),
to:
l(t('Ban IP'), 'admin/user/rules/add/' . $record['ip'] . '/host'),
Comments
Comment #2
gedur commentedAlready commited to dev. Thanks!