Skip to content

Commit

Permalink
Merge pull request #77 from emmanuel-keller/master
Browse files Browse the repository at this point in the history
Fixes typo in parameter
  • Loading branch information
emmanuel-keller authored Jul 22, 2016
2 parents 630bc49 + a3f414b commit a4c587c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenSearchServer/Crawler/Web/Start.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ public function once($once = false)
if ($once === true) {
$this->parameters['once'] = 'true';
} elseif ($once === false) {
$this->parameters['$once'] = 'false';
$this->parameters['once'] = 'false';
} else {
$this->parameters['$once'] = $once;
$this->parameters['once'] = $once;
}
return $this;
}
Expand Down

0 comments on commit a4c587c

Please sign in to comment.