diff options
author | Robin Millette <millette@controlyourself.ca> | 2009-04-17 17:04:05 +0000 |
---|---|---|
committer | Robin Millette <millette@controlyourself.ca> | 2009-04-17 17:04:05 +0000 |
commit | e5094c3359fb74caeea474f8e08eb0d15b477652 (patch) | |
tree | 9d60785414e80a5bad75e3e45ab542a0c9f0352b /actions/showgroup.php | |
parent | 55d7bb4701ca39fb8f4b859b19defdfc7af0142c (diff) | |
parent | 2eb1eb86838b47af7305dbd21a181e63bcd58418 (diff) |
fix merge conflict 0.7.x 0.8.x in util.php and register.php.
Diffstat (limited to 'actions/showgroup.php')
-rw-r--r-- | actions/showgroup.php | 4 |
1 files changed, 2 insertions, 2 deletions
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')); |