diff options
author | Brion Vibber <brion@status.net> | 2010-11-19 14:03:59 -0800 |
---|---|---|
committer | Brion Vibber <brion@status.net> | 2010-11-19 14:03:59 -0800 |
commit | e0e7cb7c5376a7adfdcf8e0724aedfae3de471ef (patch) | |
tree | b6f7b353545b3bcff3a0325d4fb33d863a364afd /actions | |
parent | 407663fb402f0384cced2b63a2f901d19ab71d19 (diff) | |
parent | ca55d6c514d4ecadbb7d3fdc4c618dfd9da4a786 (diff) |
Merge branch 'master' into 0.9.x
Diffstat (limited to 'actions')
-rw-r--r-- | actions/apisearchatom.php | 6 | ||||
-rw-r--r-- | actions/apisearchjson.php | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/actions/apisearchatom.php b/actions/apisearchatom.php index 6743e92c8..32ff918da 100644 --- a/actions/apisearchatom.php +++ b/actions/apisearchatom.php @@ -114,7 +114,7 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction $this->page = 1; } - // TODO: Suppport since_id -- we need to tweak the backend + // TODO: Suppport max_id -- we need to tweak the backend // Search classes to support it. $this->since_id = $this->trimmed('since_id'); @@ -177,6 +177,10 @@ class ApiSearchAtomAction extends ApiPrivateAuthAction $this->max_id = $notice->id; } + if ($this->since_id && $notice->id <= $this->since_id) { + break; + } + if ($cnt > $this->rpp) { break; } diff --git a/actions/apisearchjson.php b/actions/apisearchjson.php index 38e612ee3..dd442b7f2 100644 --- a/actions/apisearchjson.php +++ b/actions/apisearchjson.php @@ -85,6 +85,9 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction $this->page = 1; } + // TODO: Suppport max_id -- we need to tweak the backend + // Search classes to support it. + $this->since_id = $this->trimmed('since_id'); $this->geocode = $this->trimmed('geocode'); @@ -127,9 +130,9 @@ class ApiSearchJSONAction extends ApiPrivateAuthAction $cnt = $notice->find(); } - // TODO: since_id, lang, geocode + // TODO: max_id, lang, geocode - $results = new JSONSearchResultsList($notice, $q, $this->rpp, $this->page); + $results = new JSONSearchResultsList($notice, $q, $this->rpp, $this->page, $this->since_id); $this->initDocument('json'); $results->show(); |