Remove obsolete mysql2date documentation. Props Viper007Bond. Fixes #20056.

git-svn-id: http://svn.automattic.com/wordpress/trunk@19973 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
duck_ 2012-02-21 19:55:18 +00:00
parent 5c984c150e
commit ebc8ed6395
1 changed files with 3 additions and 7 deletions

View File

@ -10,16 +10,12 @@ require( ABSPATH . WPINC . '/option.php' );
/** /**
* Converts MySQL DATETIME field to user specified date format. * Converts MySQL DATETIME field to user specified date format.
* *
* If $dateformatstring has 'G' value, then gmmktime() function will be used to * The $translate parameter will only be used, if it is set to true and it is by
* make the time. If $dateformatstring is set to 'U', then mktime() function * default and if the $wp_locale object has the month and weekday set.
* will be used to make the time.
*
* The $translate will only be used, if it is set to true and it is by default
* and if the $wp_locale object has the month and weekday set.
* *
* @since 0.71 * @since 0.71
* *
* @param string $dateformatstring Either 'G', 'U', or php date format. * @param string $dateformatstring Either 'G', 'U', or PHP date format.
* @param string $mysqlstring Time from mysql DATETIME field. * @param string $mysqlstring Time from mysql DATETIME field.
* @param bool $translate Optional. Default is true. Will switch format to locale. * @param bool $translate Optional. Default is true. Will switch format to locale.
* @return string Date formatted by $dateformatstring or locale (if available). * @return string Date formatted by $dateformatstring or locale (if available).