Merge pull request #844 from ArthurHoaro/hotfix/id-0

Fix offset check with link ID = 0
This commit is contained in:
ArthurHoaro 2017-04-05 19:38:25 +02:00 committed by GitHub
commit c8cb5c2824
1 changed files with 2 additions and 2 deletions

View File

@ -144,10 +144,10 @@ class LinkDB implements Iterator, Countable, ArrayAccess
if (!isset($value['id']) || empty($value['url'])) {
die('Internal Error: A link should always have an id and URL.');
}
if ((! empty($offset) && ! is_int($offset)) || ! is_int($value['id'])) {
if (($offset !== null && ! is_int($offset)) || ! is_int($value['id'])) {
die('You must specify an integer as a key.');
}
if (! empty($offset) && $offset !== $value['id']) {
if ($offset !== null && $offset !== $value['id']) {
die('Array offset and link ID must be equal.');
}