Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Enable automatic filtering #143

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SEOstats/Services/Google/Search.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ protected static function getDomainFilter ($domain)
protected static function getNextSerp ($start, $query)
{
return 0 == $start
? sprintf('search?q=%s&filter=0', $query)
: sprintf('search?q=%s&filter=0&start=%s0', $query, $start);
? sprintf('search?q=%s&filter=1', $query)
: sprintf('search?q=%s&filter=1&start=%s0', $query, $start);
}

protected static function guardNoCaptcha ($response)
Expand Down