Fix @since for timer_start and timer_stop. See #5211.

git-svn-id: https://develop.svn.wordpress.org/trunk@6437 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2007-12-20 21:28:53 +00:00
parent e097caa70c
commit e2c1062fc5

View File

@ -103,7 +103,7 @@ if ( !extension_loaded('mysql') && !file_exists(ABSPATH . 'wp-content/db.php') )
* @package WordPress
* @global int $timestart Seconds and Microseconds added together from when function is called
* @return bool Always returns true
* @since 1.5
* @since 0.71
*/
function timer_start() {
global $timestart;
@ -130,7 +130,7 @@ function timer_start() {
* most cases, you only need to echo it.
*
* @package WordPress
* @since 1.5
* @since 0.71
* @global int $timestart Seconds and Microseconds added together from when timer_start() is called
* @global int $timeend Seconds and Microseconds added together from when function is called
*