Commit 4485d196 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Fix not passing $types to parent connection in MasterSlaveConnection#delete()

parent 99574240
......@@ -264,7 +264,7 @@ class MasterSlaveConnection extends Connection
public function delete($tableName, array $identifier, array $types = array())
{
$this->connect('master');
return parent::delete($tableName, $identifier);
return parent::delete($tableName, $identifier, $types);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment