Fix typo in upgrade_100(). props tivnet, bpetty. fixes #24020.
git-svn-id: http://core.svn.wordpress.org/trunk@23949 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d454a9c86b
commit
97e19c7c3a
|
@ -433,7 +433,7 @@ function upgrade_100() {
|
|||
foreach ($categories as $category) {
|
||||
if ('' == $category->category_nicename) {
|
||||
$newtitle = sanitize_title($category->cat_name);
|
||||
$wpdb>update( $wpdb->categories, array('category_nicename' => $newtitle), array('cat_ID' => $category->cat_ID) );
|
||||
$wpdb->update( $wpdb->categories, array('category_nicename' => $newtitle), array('cat_ID' => $category->cat_ID) );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue