Skip to content

Commit

Permalink
Hotfix bug in AbstractGateway findBy method.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahsmall committed Mar 10, 2013
1 parent 89ce570 commit b2945da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/Soliant/SimpleFM/ZF2/Gateway/AbstractGateway.php
Expand Up @@ -131,7 +131,7 @@ public function findBy(array $search, array $sort = array(), $max = NULL, $skip
$search,
$this->sortArrayToCommandArray($sort),
$this->maxSkipToCommandArray($max, $skip),
array('-findall' => NULL)
array('-find' => NULL)
);
$this->simpleFMAdapter
->setCommandArray($commandArray)
Expand Down

0 comments on commit b2945da

Please sign in to comment.