Changeset 6540

Show
Ignore:
Timestamp:
01/02/08 23:03:25 (9 months ago)
Author:
ryan
Message:

Fix cache close. see #5570

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/cache.php

    r6539 r6540  
    77 
    88function wp_cache_close() { 
    9     global $wp_object_cache; 
    10  
    11     if ( ! isset($wp_object_cache) ) 
    12         return; 
    13     return $wp_object_cache->save(); 
     9    return true; 
    1410} 
    1511