Make WordPress Core

Changeset 12210


Ignore:
Timestamp:
11/18/2009 10:04:07 PM (15 years ago)
Author:
ryan
Message:

Delete old magpie cache options. Props Denis-de-Bernardy. fixes #10592

Location:
trunk
Files:
2 edited

Legend:

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

    r12136 r12210  
    357357    foreach ($unusedoptions as $option)
    358358        delete_option($option);
     359   
     360    // delete obsolete magpie stuff
     361    $wpdb->query("DELETE FROM $wpdb->options WHERE option_name REGEXP '^rss_[0-9a-f]{32}(_ts)?$'");
    359362}
    360363
  • trunk/wp-includes/version.php

    r12191 r12210  
    1616 * @global int $wp_db_version
    1717 */
    18 $wp_db_version = 12136;
     18$wp_db_version = 12208;
    1919
    2020/**
Note: See TracChangeset for help on using the changeset viewer.