try to fix groups with a new qry

This commit is contained in:
Evan Prodromou 2009-01-24 10:53:28 +01:00
parent 1b07e65277
commit 8f19855cd0
1 changed files with 11 additions and 4 deletions

View File

@ -106,12 +106,19 @@ class GroupsAction extends Action
_('Create a new group'));
$this->elementEnd('p');
$limit = GROUPS_PER_PAGE + 1;
$offset = ($this->page-1) * GROUPS_PER_PAGE;
$limit = GROUPS_PER_PAGE + 1;
$qry = 'SELECT * from User_group ' .
'ORDER by created DESC ';
if (common_config('db','type') == 'pgsql') {
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
} else {
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
}
$groups = new User_group();
$groups->orderBy('created DESC');
$groups->limit($offset, $limit);
$groups->query($qry);
if ($groups->find()) {
$gl = new GroupList($groups, null, $this);
@ -119,7 +126,7 @@ class GroupsAction extends Action
}
$this->pagination($this->page > 1, $cnt > GROUPS_PER_PAGE,
$this->page, 'groups');
$this->page, 'groups', array());
}
function showSections()