Skip to content

Commit

Permalink
Fixes #10523, Fixes #10507
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgutierrez committed Jun 19, 2015
1 parent 60a4871 commit 65199a7
Show file tree
Hide file tree
Showing 9 changed files with 523 additions and 504 deletions.
18 changes: 13 additions & 5 deletions ext/phalcon/mvc/model.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

554 changes: 296 additions & 258 deletions ext/phalcon/mvc/model/query.zep.c

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions ext/phalcon/mvc/model/query.zep.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

179 changes: 95 additions & 84 deletions ext/phalcon/mvc/model/query/builder.zep.c

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ext/phalcon/mvc/url.zep.c

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions phalcon/mvc/model.zep
Original file line number Diff line number Diff line change
Expand Up @@ -746,12 +746,12 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface
if fetch bindParams, params["bind"] {

if typeof bindParams == "array" {
query->setBindParams(bindParams);
query->setBindParams(bindParams, true);
}

if fetch bindTypes, params["bindTypes"] {
if typeof bindTypes == "array" {
query->setBindTypes(bindTypes);
query->setBindTypes(bindTypes, true);
}
}
}
Expand Down Expand Up @@ -836,12 +836,12 @@ abstract class Model implements EntityInterface, ModelInterface, ResultInterface
if fetch bindParams, params["bind"] {

if typeof bindParams == "array" {
query->setBindParams(bindParams);
query->setBindParams(bindParams, true);
}

if fetch bindTypes, params["bindTypes"] {
if typeof bindTypes == "array" {
query->setBindTypes(bindTypes);
query->setBindTypes(bindTypes, true);
}
}
}
Expand Down
Loading

0 comments on commit 65199a7

Please sign in to comment.