From: Ilia Alshanetsky Date: Thu, 23 Jun 2011 14:12:50 +0000 (+0000) Subject: Fixed a bug with calculation of REQUEST_TIME in apache2 X-Git-Tag: php-5.4.0alpha2~105 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=86c44e119fd71eeed6f3bc213d544a06cc4a13e5;p=php Fixed a bug with calculation of REQUEST_TIME in apache2 --- diff --git a/sapi/apache2handler/sapi_apache2.c b/sapi/apache2handler/sapi_apache2.c index 48eea2b6fb..a7f250d512 100644 --- a/sapi/apache2handler/sapi_apache2.c +++ b/sapi/apache2handler/sapi_apache2.c @@ -338,7 +338,7 @@ static void php_apache_sapi_log_message_ex(char *msg, request_rec *r TSRMLS_DC) static double php_apache_sapi_get_request_time(TSRMLS_D) { php_struct *ctx = SG(server_context); - return apr_time_as_msec(ctx->r->request_time); + return ((double) apr_time_as_msec(ctx->r->request_time)) / 1000.0; } extern zend_module_entry php_apache_module;