Skip to content

Commit

Permalink
Merge pull request #1798 from sjinks/issue-1783
Browse files Browse the repository at this point in the history
[1.3.0] Fix #1783
  • Loading branch information
Phalcon committed Jan 13, 2014
2 parents a659ac7 + 25a6a6a commit db7c587
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@
- Fixed handling of numeric namespaces/modules/controllers/actions (#1688)
- Added Phalcon\Mvc\View::exists() and Phalcon\Mvc\View(\Simple)::getRegisteredEngines() (#1707)
- Volt: fixed bug in email_filed() (#1723)
- Fixed deprecation warnings in Phalcon\Mvc\Collection::save() and Phalcon\Mvc\Collection::delete() (#1783)
- Phalcon\Paginator:
- Phalcon\Paginator\Adapter\Model returns correct results even when page number is incorrect (#1654)
- Optimized Phalcon\Paginator\Adapter\QueryBuilder (#1632)
Expand Down
2 changes: 1 addition & 1 deletion ext/mvc/collection.c
Original file line number Diff line number Diff line change
Expand Up @@ -2013,7 +2013,7 @@ PHP_METHOD(Phalcon_Mvc_Collection, delete){

PHALCON_INIT_VAR(options);
array_init_size(options, 1);
add_assoc_bool_ex(options, SS("safe"), 1);
add_assoc_long_ex(options, SS("w"), 1);

/**
* Remove the instance
Expand Down

0 comments on commit db7c587

Please sign in to comment.