From: Andrew Dolgov Date: Wed, 27 Feb 2013 18:20:14 +0000 (+0400) Subject: replace getmicrotime() wrapper with microtime(true) (2) X-Git-Tag: 1.7.1~22^2~6 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=1ebf3b979ecb697285edd3bec284290bd305647d;hp=fa9e88c367fb3d6c771aa1788f133087f49696bc;p=tt-rss.git replace getmicrotime() wrapper with microtime(true) (2) --- diff --git a/backend.php b/backend.php index 98b76450..41481a96 100644 --- a/backend.php +++ b/backend.php @@ -47,7 +47,7 @@ startup_gettext(); - $script_started = getmicrotime(); + $script_started = microtime(true); $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME); diff --git a/public.php b/public.php index 7138b3d8..dccd77f4 100644 --- a/public.php +++ b/public.php @@ -28,7 +28,7 @@ startup_gettext(); - $script_started = getmicrotime(); + $script_started = microtime(true); $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);