diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php index 2a181b3..fe15e87 100644 --- a/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php +++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php @@ -243,8 +243,8 @@ public static function sqlFunctionRand($seed = NULL) { * a Statement object, that will create a PDOStatement * using the semi-private PDOPrepare() method below. */ - public function prepare($query, array $options = array()) { - return new Statement($this, $query, $options); + public function prepare($statement, array $driver_options = array()) { + return new Statement($this, $statement, $driver_options); } /**