#24774 closed task (blessed) (fixed)
Deprecate wpdb::escape()
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.6 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Database | Keywords: | |
Focuses: | Cc: |
Description
wpdb::escape() has been used by core and plugins as a generic addslashes() alias. That isn't ideal. In #21767 we've removed all improper usage of wpdb::escape(), at which point everything now uses either wpdb::prepare() or esc_sql() (for database escaping) or wp_slash() (for the unfortunate need to generically slash).
We should deprecate wpdb::escape(). In the process, esc_sql() should become a wrapper for real escape, because it would be crazy and wrong to be using esc_sql() in a non-SQL context.
This came out of work by the WP security team.
Change History (4)
Note: See
TracTickets for help on using
tickets.
In 24718: