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

Commit

Permalink
Merge branch 'v1.3.0-rc'
Browse files Browse the repository at this point in the history
Conflicts:
	CHANGELOG.md
	lib/Pheasant/Mapper/RowMapper.php
  • Loading branch information
harto committed May 29, 2014
2 parents 66a9197 + ddcaeac commit e4a90b5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Changes between Pheasant 1.2.1 and 1.3.0
========================================

- Documentation fixes (#58) c53a4a6
- Fixed decimal marshalling in specific locales (#103) e0f78a1
- Connections can be overridden on a per-class basis (#104) c05883d
- Distinguish NULL from empty string (#106) 790dcd1
- Connection respects PHEASANT_DEBUG env 303fe4c
- SQL binding improvements e0f78a1

Changes between Pheasant 1.2.0 and 1.2.1
========================================

Expand Down
2 changes: 1 addition & 1 deletion lib/Pheasant/Mapper/RowMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public function query(Criteria $criteria=null, $alias=null)
*/
public function find($class, Criteria $criteria=null)
{
return new Collection($class,
return new Collection($class,
$this->query($criteria, $this->_pheasant->schema($class)->alias()));
}

Expand Down

0 comments on commit e4a90b5

Please sign in to comment.