- Patch #634098 by asimmonds: fixed broken pager on /taxonomy/term/* pages.
parent
7edad0db9e
commit
29e02b45c6
|
@ -156,6 +156,7 @@ function taxonomy_select_nodes($tid, $pager = TRUE, $limit = FALSE, $order = arr
|
||||||
}
|
}
|
||||||
$query = db_select('taxonomy_index', 't');
|
$query = db_select('taxonomy_index', 't');
|
||||||
$query->addTag('node_access');
|
$query->addTag('node_access');
|
||||||
|
$query->condition('tid', $tid);
|
||||||
if ($pager) {
|
if ($pager) {
|
||||||
$count_query = clone $query;
|
$count_query = clone $query;
|
||||||
$count_query->addExpression('COUNT(t.nid)');
|
$count_query->addExpression('COUNT(t.nid)');
|
||||||
|
@ -171,7 +172,6 @@ function taxonomy_select_nodes($tid, $pager = TRUE, $limit = FALSE, $order = arr
|
||||||
$query->range(0, $limit);
|
$query->range(0, $limit);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$query->condition('tid', $tid);
|
|
||||||
$query->addField('t', 'nid');
|
$query->addField('t', 'nid');
|
||||||
$query->addField('t', 'tid');
|
$query->addField('t', 'tid');
|
||||||
foreach ($order as $field => $direction) {
|
foreach ($order as $field => $direction) {
|
||||||
|
|
Loading…
Reference in New Issue