﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
21159,get_bookmark() errors with non-existent id,Mike Stop Continues,nacin,"Using get_bookmark() with a non-existent id produces the following errors:

{{{
Notice: Trying to get property of non-object in /homepages/43/d372234873/htdocs/mikestopcontinues/wp-includes/bookmark.php on line 36

Warning: Creating default object from empty value in /homepages/43/d372234873/htdocs/mikestopcontinues/wp-includes/bookmark.php on line 36

Notice: Undefined property: stdClass::$link_id in /homepages/43/d372234873/htdocs/mikestopcontinues/wp-includes/bookmark.php on line 37

Notice: Undefined property: stdClass::$link_id in /homepages/43/d372234873/htdocs/mikestopcontinues/wp-includes/bookmark.php on line 281
}}}

My thought would be to add `if(is_null($_bookmark)) return false;` to line 36 of wp-includes/bookmark.php, though it might be better to `if(is_null($_bookmark)) { wp_cache_add($bookmark, $_bookmark, 'bookmark'); return $_bookmark;}`",defect (bug),closed,normal,3.5,General,,normal,fixed,has-patch commit,
