Created
October 19, 2018 04:04
-
-
Save sminnee/b489b2b0401cf36821b7127e1d48538c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/ORM/Connect/PDOConnector.php b/src/ORM/Connect/PDOConnector.php | |
| index f3fbae1..27ff7b8 100644 | |
| --- a/src/ORM/Connect/PDOConnector.php | |
| +++ b/src/ORM/Connect/PDOConnector.php | |
| @@ -356,7 +356,7 @@ class PDOConnector extends DBConnector | |
| // Bind and invoke statement safely | |
| if ($statement) { | |
| $this->bindParameters($statement, $parameters); | |
| - $statement->execute($parameters); | |
| + $statement->execute(); | |
| } | |
| // Generate results |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment