Skip to content

Commit

Permalink
Fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
fadion committed Feb 4, 2015
1 parent 0ad9e5a commit 9d797d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fadion/Bouncy/BouncyTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ public function save(Array $options = array())
// uses the save() method. In this case,
// the field still doesn't have an id, so
// it is saved first, and then indexed.
if (! $params['id']) {
if (! isset($params['id'])) {
$saved = parent::save($options);
$this->index();

Expand Down

0 comments on commit 9d797d3

Please sign in to comment.