mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-26 18:21:02 +00:00
new design, pagination & more
This commit is contained in:
parent
55821e04c1
commit
6a361945ea
31 changed files with 467 additions and 371 deletions
|
@ -114,7 +114,7 @@ class Sqlite extends Store {
|
|||
return $entry[0];
|
||||
}
|
||||
|
||||
public function getEntriesByView($view) {
|
||||
public function getEntriesByView($view, $limit = '') {
|
||||
parent::__construct();
|
||||
|
||||
switch ($_SESSION['sort'])
|
||||
|
@ -152,6 +152,8 @@ class Sqlite extends Store {
|
|||
break;
|
||||
}
|
||||
|
||||
$sql .= ' ' . $limit;
|
||||
|
||||
$query = $this->executeQuery($sql, $params);
|
||||
$entries = $query->fetchAll();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue