]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Twitter/Statuses/NetworkPublicTimeline.php
Standards
[friendica.git] / src / Module / Api / Twitter / Statuses / NetworkPublicTimeline.php
index f1da6d2f6072ccd7e28afc24985796208f0da05a..6250659ba1a82d326a934a62eedd5cd0317f3565 100644 (file)
@@ -39,11 +39,11 @@ class NetworkPublicTimeline extends BaseApi
                $uid = BaseApi::getCurrentUserID();
 
                $since_id = $_REQUEST['since_id'] ?? 0;
-               $max_id   = $_REQUEST['max_id'] ?? 0;
+               $max_id   = $_REQUEST['max_id']   ?? 0;
 
                // pagination
                $count = $_REQUEST['count'] ?? 20;
-               $page  = $_REQUEST['page'] ?? 1;
+               $page  = $_REQUEST['page']  ?? 1;
 
                $start = max(0, ($page - 1) * $count);