summaryrefslogtreecommitdiff
path: root/actions/showgroup.php
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-04-17 17:04:05 +0000
committerRobin Millette <millette@controlyourself.ca>2009-04-17 17:04:05 +0000
commite5094c3359fb74caeea474f8e08eb0d15b477652 (patch)
tree9d60785414e80a5bad75e3e45ab542a0c9f0352b /actions/showgroup.php
parent55d7bb4701ca39fb8f4b859b19defdfc7af0142c (diff)
parent2eb1eb86838b47af7305dbd21a181e63bcd58418 (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.php4
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'));