diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-17 01:11:38 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-04-17 01:11:38 +0000 |
commit | 34d904b180e5caa17eb945292a8a64656424d5d0 (patch) | |
tree | 1b78eaa769d3f59bd9c3b3aaf4bc81ac4a0ed2e5 | |
parent | 864c4066a6f9ebe6c899fc3448365c6c2348a3c8 (diff) |
Ticket 1404. Showing the link to the members list page.
-rw-r--r-- | actions/grouprss.php | 2 | ||||
-rw-r--r-- | actions/showgroup.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/actions/grouprss.php b/actions/grouprss.php index a9a2eef87..0b7280a11 100644 --- a/actions/grouprss.php +++ b/actions/grouprss.php @@ -34,7 +34,7 @@ if (!defined('LACONICA')) { require_once INSTALLDIR.'/lib/rssaction.php'; -define('MEMBERS_PER_SECTION', 81); +define('MEMBERS_PER_SECTION', 27); /** * Group RSS feed diff --git a/actions/showgroup.php b/actions/showgroup.php index 025f8383a..a7df39727 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -35,7 +35,7 @@ if (!defined('LACONICA')) { require_once INSTALLDIR.'/lib/noticelist.php'; require_once INSTALLDIR.'/lib/feedlist.php'; -define('MEMBERS_PER_SECTION', 81); +define('MEMBERS_PER_SECTION', 27); /** * Group main page @@ -361,7 +361,7 @@ class ShowgroupAction extends Action $this->element('p', null, _('(None)')); } - if ($cnt == MEMBERS_PER_SECTION) { + if ($cnt > MEMBERS_PER_SECTION) { $this->element('a', array('href' => common_local_url('groupmembers', array('nickname' => $this->group->nickname))), _('All members')); |