From: foobar Date: Tue, 9 Sep 2003 21:30:48 +0000 (+0000) Subject: Show the runtime version of Apache instead of compile time. X-Git-Tag: RELEASE_0_7~159 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f04643ee4c4e833945195823b0eec3bbd3bd146e;p=php Show the runtime version of Apache instead of compile time. --- diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index a59336a38c..ec7aca48db 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -163,6 +163,7 @@ PHP_FUNCTION(apache_note) */ PHP_MINFO_FUNCTION(apache) { + char *apv = php_apache_get_version(); module *modp = NULL; char output_buf[128]; #if !defined(WIN32) && !defined(WINNT) @@ -195,7 +196,9 @@ PHP_MINFO_FUNCTION(apache) php_info_print_table_row(2, "APACHE_TARGET", PHP_APACHE_TARGET); #endif - php_info_print_table_row(2, "Apache Version", SERVER_VERSION); + if (apv && *apv) { + php_info_print_table_row(2, "Apache Version", apv); + } #ifdef APACHE_RELEASE sprintf(output_buf, "%d", APACHE_RELEASE);