mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
Fix sorting
Also avoid sorting when it's not needed by queries
This commit is contained in:
parent
999f255203
commit
a0bf7c16bd
1 changed files with 1 additions and 1 deletions
|
@ -841,7 +841,6 @@ class Database {
|
||||||
subscribed_feeds.sub as subscription
|
subscribed_feeds.sub as subscription
|
||||||
FROM arsse_articles"
|
FROM arsse_articles"
|
||||||
);
|
);
|
||||||
$q->setOrder("edition".($context->reverse ? " desc" : ""));
|
|
||||||
$q->setLimit($context->limit, $context->offset);
|
$q->setLimit($context->limit, $context->offset);
|
||||||
$q->setCTE("user(user)", "SELECT ?", "str", $user);
|
$q->setCTE("user(user)", "SELECT ?", "str", $user);
|
||||||
if ($context->subscription()) {
|
if ($context->subscription()) {
|
||||||
|
@ -1028,6 +1027,7 @@ class Database {
|
||||||
throw new Exception("constantUnknown", $fields);
|
throw new Exception("constantUnknown", $fields);
|
||||||
}
|
}
|
||||||
$q = $this->articleQuery($user, $context, $columns);
|
$q = $this->articleQuery($user, $context, $columns);
|
||||||
|
$q->setOrder("edited_date".($context->reverse ? " desc" : ""));
|
||||||
$q->setJoin("left join arsse_enclosures on arsse_enclosures.article is arsse_articles.id");
|
$q->setJoin("left join arsse_enclosures on arsse_enclosures.article is arsse_articles.id");
|
||||||
// perform the query and return results
|
// perform the query and return results
|
||||||
return $this->db->prepare($q->getQuery(), $q->getTypes())->run($q->getValues());
|
return $this->db->prepare($q->getQuery(), $q->getTypes())->run($q->getValues());
|
||||||
|
|
Loading…
Reference in a new issue