Set instead of add since the cache value has multiple keys that can change. Props josephscott. fixes #4743

git-svn-id: http://svn.automattic.com/wordpress/trunk@5879 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-08-16 18:12:12 +00:00
parent 5e34cab763
commit aa1b4e8968
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ function get_bookmarks($args = '') {
$results = $wpdb->get_results($query);
$cache[ $key ] = $results;
wp_cache_add( 'get_bookmarks', $cache, 'bookmark' );
wp_cache_set( 'get_bookmarks', $cache, 'bookmark' );
return apply_filters('get_bookmarks', $results, $r);
}