Make WordPress Core

Opened 19 years ago

Closed 19 years ago

#5206 closed defect (bug) (fixed)

Misspelling in wp-includes/taxonomy.php

Reported by: zamoose Owned by:
Priority: high Milestone: 2.5
Component: Administration Version:
Severity: major Keywords: has-patch commit
Cc: Focuses:

Description

Somebody fat-fingered line 1124 of trunk/wp-include/taxonomy.php. It reads:

$wpdb->update( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent' ), array( 'term_taxnonoy_id' => $tt_id ) );

It OUGHT to read:

$wpdb->update( $wpdb->term_taxonomy, compact( 'term_id', 'taxonomy', 'description', 'parent' ), array( 'term_taxonomy_id' => $tt_id ) );

I'll attach a patch.

Attachments (1)

taxonomy.diff (814 bytes ) - added by zamoose 19 years ago.

Download all attachments as: .zip

Change History (5)

@zamoose
19 years ago

#1 @zamoose
19 years ago

  • Keywords has-patch commit added

#2 @zamoose
19 years ago

Apologies for the run-away code formatting above.

Shoulda used "Preview"...

*sigh*

#4 @westi
19 years ago

  • Resolutionfixed
  • Status newclosed

(In [6251]) Fix typo in call to $wpdb->update. Fixes #5206 props zamoose

Note: See TracTickets for help on using tickets.