List page throws an exception if listed > PROFILES_PER_MINILIST
List page throws an exception if listed > PROFILES_PER_MINILIST
| Issue ID: | 3562 |
| Issue Category: | bug |
| Component: | web site |
| Priority: | normal |
| Status: | active |
| Assigned: | Unassigned |
| Version: | 1.0 |
This is the patch to fix that
$ git diff actions/showprofiletag.php
diff --git a/actions/showprofiletag.php b/actions/showprofiletag.php
index ec1837f..9e0a7ba 100644
--- a/actions/showprofiletag.php
+++ b/actions/showprofiletag.php
@@ -318,9 +318,9 @@ class ShowprofiletagAction extends Action
if ($cnt > PROFILES_PER_MINILIST) {
$this->elementStart('p');
- $this->element('a', array('href' => common_local_url('taggedprofiles',
- array('nickname' => $this->tagger->nickname,
- 'profiletag' => $this->peopletag->tag)),
+ $this->element('a', array('href' => common_local_url('peopletagged',
+ array('tagger' => $this->tagger->nickname,
+ 'tag' => $this->peopletag->tag)),
'class' => 'more'),
// TRANS: Link for more "People in list x by a user"
// TRANS: if there are more than the mini list's maximum.

Updates
You can also subscribe to the
RSS feed for updates to this issue.