#57133: admin/comment needs to remember sort order in page

4.7.x
Steven Wittens 2006-04-04 01:26:05 +00:00
parent 2128b4d678
commit 57be840338
2 changed files with 2 additions and 2 deletions

View File

@ -975,7 +975,7 @@ function comment_admin_overview($type = 'new') {
$form['operations'][$comment->cid] = array('#value' => l(t('edit'), 'comment/edit/'. $comment->cid, array(), $destination));
}
$form['comments'] = array('#type' => 'checkboxes', '#options' => $comments);
$form['pager'] = array('#value' => theme('pager', NULL, 50, 0));
$form['pager'] = array('#value' => theme('pager', NULL, 50, 0, tablesort_pager()));
return drupal_get_form('comment_admin_overview', $form);
}

View File

@ -975,7 +975,7 @@ function comment_admin_overview($type = 'new') {
$form['operations'][$comment->cid] = array('#value' => l(t('edit'), 'comment/edit/'. $comment->cid, array(), $destination));
}
$form['comments'] = array('#type' => 'checkboxes', '#options' => $comments);
$form['pager'] = array('#value' => theme('pager', NULL, 50, 0));
$form['pager'] = array('#value' => theme('pager', NULL, 50, 0, tablesort_pager()));
return drupal_get_form('comment_admin_overview', $form);
}