Commit a6c681db by Franz Liedke

Make sure sync() always works with arrays.

parent 2e836499
...@@ -121,6 +121,7 @@ class Has_Many_And_Belongs_To extends Relationship { ...@@ -121,6 +121,7 @@ class Has_Many_And_Belongs_To extends Relationship {
public function sync($ids) public function sync($ids)
{ {
$current = $this->pivot()->lists($this->other_key()); $current = $this->pivot()->lists($this->other_key());
$ids = (array) $ids;
// First we need to attach any of the associated models that are not currently // First we need to attach any of the associated models that are not currently
// in the joining table. We'll spin through the given IDs, checking to see // in the joining table. We'll spin through the given IDs, checking to see
......
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