Render RegiserThrottle extra profile data properly

This commit is contained in:
Mikael Nordfeldth 2016-02-13 01:16:34 +01:00
parent 799c2e47fe
commit 8ef2abf30b
2 changed files with 12 additions and 7 deletions

View File

@ -160,7 +160,7 @@ class RegisterThrottlePlugin extends Plugin
return true;
}
$ri = Registration_ip::getKV('user_id', $profile->id);
$ri = Registration_ip::getKV('user_id', $target->getID());
$ipaddress = null;
if ($ri instanceof Registration_ip) {
$ipaddress = $ri->ipaddress;
@ -172,12 +172,17 @@ class RegisterThrottlePlugin extends Plugin
$action->element('h2', null, _('Registration IP'));
// TRANS: Label for the information about which IP a users registered from.
$action->element('strong', null, _('Registered from:'));
$action->element('a',
[ 'class'=>'ipaddress',
'href'=>common_local_url('ipregistrations', array('ipaddress'=>$ipaddress)),
],
$ipaddress ?: 'unknown');
$el = 'span';
$attrs = ['class'=>'ipaddress'];
if (!is_null($ipaddress)) {
$el = 'a';
$attrs['href'] = common_local_url('ipregistrations', array('ipaddress'=>$ipaddress));
}
$action->element($el, $attrs,
// TRANS: Unknown IP address.
$ipaddress ?: _('unknown'));
$action->elementEnd('div');
}

View File

@ -15,7 +15,7 @@ class IpregistrationsAction extends ManagedAction
protected function doPreparation()
{
if (!$scoped->hasRight(Right::SILENCEUSER) && !$scoped->hasRole(Profile_role::ADMINISTRATOR)) {
if (!$this->scoped->hasRight(Right::SILENCEUSER) && !$this->scoped->hasRole(Profile_role::ADMINISTRATOR)) {
throw new AuthorizationException(_('You are not authorized to view this page.'));
}