From b2945daaae67c8f71d74b9f110e83947aacfb3d4 Mon Sep 17 00:00:00 2001 From: Jeremiah Small Date: Sat, 9 Mar 2013 21:11:31 -0800 Subject: [PATCH] Hotfix bug in AbstractGateway findBy method. --- library/Soliant/SimpleFM/ZF2/Gateway/AbstractGateway.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Soliant/SimpleFM/ZF2/Gateway/AbstractGateway.php b/library/Soliant/SimpleFM/ZF2/Gateway/AbstractGateway.php index 833b07d..b4050f9 100644 --- a/library/Soliant/SimpleFM/ZF2/Gateway/AbstractGateway.php +++ b/library/Soliant/SimpleFM/ZF2/Gateway/AbstractGateway.php @@ -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)