aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-06-25 23:19:21 +0200
committerThomas Citharel <tcit@tcit.fr>2016-06-25 23:19:21 +0200
commite43c78abd9193641d07ea27d0275fc19419b89ad (patch)
tree7780e54b4ffc809c5f9248e29edfe8084dacc9b0 /src/Wallabag/ApiBundle/Controller/WallabagRestController.php
parente5fb89e5d31c1c0645e8dd252bb4f970dc5f3226 (diff)
downloadwallabag-e43c78abd9193641d07ea27d0275fc19419b89ad.tar.gz
wallabag-e43c78abd9193641d07ea27d0275fc19419b89ad.tar.zst
wallabag-e43c78abd9193641d07ea27d0275fc19419b89ad.zip
CS
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller/WallabagRestController.php')
-rw-r--r--src/Wallabag/ApiBundle/Controller/WallabagRestController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
index 7d624812..4fae4b0a 100644
--- a/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
+++ b/src/Wallabag/ApiBundle/Controller/WallabagRestController.php
@@ -50,7 +50,7 @@ class WallabagRestController extends FOSRestController
50 $order = $request->query->get('order', 'desc'); 50 $order = $request->query->get('order', 'desc');
51 $page = (int) $request->query->get('page', 1); 51 $page = (int) $request->query->get('page', 1);
52 $perPage = (int) $request->query->get('perPage', 30); 52 $perPage = (int) $request->query->get('perPage', 30);
53 $since = $request->query->get('since',0); 53 $since = $request->query->get('since', 0);
54 54
55 $pager = $this->getDoctrine() 55 $pager = $this->getDoctrine()
56 ->getRepository('WallabagCoreBundle:Entry') 56 ->getRepository('WallabagCoreBundle:Entry')