{
$tag = common_canonical_tag($this->arg('tag'));
try {
- $this->peopletag = Profile_list::getByPK(array('tagger' => $this->target->getID(), 'tag' => $tag));
+ $this->peopletag = Profile_list::getByPK(['tagger' => $this->target->getID(), 'tag' => $tag]);
} catch (NoResultException $e) {
// TRANS: Client error displayed trying to reference a non-existing list.
throw new ClientException('No such list.');
$m->connect('all/:tag',
array('action' => 'showprofiletag',
- 'nickname' => $nickname,
+ 'tagger' => $nickname,
'tag' => self::REGEX_TAG));
foreach (array('subscriptions', 'subscribers') as $a) {