Make WordPress Core


Ignore:
Timestamp:
04/10/2013 04:04:36 PM (12 years ago)
Author:
SergeyBiryukov
Message:

Fix typo in upgrade_100(). props tivnet, bpetty. fixes #24020.

File:
1 edited

Legend:

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

    r23567 r23949  
    434434        if ('' == $category->category_nicename) {
    435435            $newtitle = sanitize_title($category->cat_name);
    436             $wpdb>update( $wpdb->categories, array('category_nicename' => $newtitle), array('cat_ID' => $category->cat_ID) );
     436            $wpdb->update( $wpdb->categories, array('category_nicename' => $newtitle), array('cat_ID' => $category->cat_ID) );
    437437        }
    438438    }
Note: See TracChangeset for help on using the changeset viewer.