Make WordPress Core


Ignore:
Timestamp:
05/16/2009 04:56:13 AM (16 years ago)
Author:
ryan
Message:

Check if delete_transient() exists to avoid error when upgrading from releases that don't define it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/update-core.php

    r11005 r11356  
    251251
    252252    // Force refresh of update information
    253     delete_transient('update_core');
     253    if ( function_exists('delete_transient') )
     254        delete_transient('update_core');
     255    else
     256        delete_option('update_core');
    254257
    255258    // Remove maintenance file, we're done.
Note: See TracChangeset for help on using the changeset viewer.