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
This commit is contained in:
westi 2007-12-20 21:28:53 +00:00
parent 1f889417e5
commit 6950e2833b
1 changed files with 2 additions and 2 deletions

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
*