Clean up deprecated format_to_post() docs. see #27700.

git-svn-id: https://develop.svn.wordpress.org/trunk@28021 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-04-07 22:23:00 +00:00
parent 0bd5e6c02e
commit 9bb79a1a97

View File

@ -3424,14 +3424,12 @@ function default_topic_count_text( $count ) {
}
/**
* Formerly used to escape strings before INSERTing into the DB.
* Formerly used to escape strings before inserting into the DB.
*
* Has not performed this function for many, many years.
* Has not performed this function for many, many years. Use wpdb::prepare() instead.
*
* @since 0.71
* @deprecated 3.9.0
* @deprecated Original intent was to add slashes to POSTed data, use
* $wpdb::prepare() instead
*
* @param string $content The text to format.
* @return string The very same text.