Skip to content

Commit

Permalink
Merge pull request #8 from boenskov/master
Browse files Browse the repository at this point in the history
Fixed invalid converting $id to ":null:"
  • Loading branch information
sergeyklay committed Apr 18, 2017
2 parents fce4f07 + 9df0945 commit 5131689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Breadcrumbs.php
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ public function update($url, array $data)
);
}

if (!is_null($url)) {
if (is_null($url)) {
$id = ':null:';
}

Expand Down

0 comments on commit 5131689

Please sign in to comment.