#7416 closed defect (bug) (fixed)
SQL typo in wp-admin/includes/user.php
Reported by: | docwhat | Owned by: | |
---|---|---|---|
Milestone: | 2.6.1 | Priority: | high |
Severity: | normal | Version: | 2.6 |
Component: | Administration | Keywords: | has-patch |
Focuses: | Cc: |
Description
On line 262 of wp-admin/include/user.php there is a trailing } in the SQL.
The line reads:
$wpdb->query( $wpdb->prepare("UPDATE $wpdb->links SET link_owner = %d WHERE link_owner = %d}", $reassign, $id) );
But should be:
$wpdb->query( $wpdb->prepare("UPDATE $wpdb->links SET link_owner = %d WHERE link_owner = %d", $reassign, $id) );
Ciao!
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
(In [8467]) Remove extra } from query. Fixes #7416 for trunk.