#57133: admin/comment needs to remember sort order in page
parent
2128b4d678
commit
57be840338
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue