Skip to content

Commit

Permalink
Fixed the extra ) bug in Cumula\DataStore\Sql\Base #86
Browse files Browse the repository at this point in the history
  • Loading branch information
craigseabourne committed Jun 7, 2012
1 parent 3cad449 commit fd061ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cumula/DataStore/Sql/Base.php
Expand Up @@ -178,7 +178,7 @@ public function get($args) {
if (!is_array($args)) {
$args = array($this->_config['idField'] => $args);
}
$obj = $this->findByAnyFilter($args));
$obj = $this->findByAnyFilter($args);
if ($obj) {
$obj = $this->newObj($obj[0]);
}
Expand Down

0 comments on commit fd061ec

Please sign in to comment.