From 6950e2833b4082506a09acf52a084f6f6d12843a Mon Sep 17 00:00:00 2001 From: westi Date: Thu, 20 Dec 2007 21:28:53 +0000 Subject: [PATCH] Fix @since for timer_start and timer_stop. See #5211. git-svn-id: http://svn.automattic.com/wordpress/trunk@6437 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-settings.php b/wp-settings.php index 994327a34..96131f224 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -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 *