diff options
author | Derick Rethans <derick@php.net> | 2001-10-09 09:41:10 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2001-10-09 09:41:10 +0000 |
commit | e4ebe9f1ffb9b9cbc299bd52cd8bd22e9db4dcfd (patch) | |
tree | 5a3fe45eda009b60f56a05df98ad85bacd5ce340 /sapi/apache/php_apache.c | |
parent | 251c2753050b70030ef8a1ece3b3c2a75e377ed9 (diff) | |
download | php-git-e4ebe9f1ffb9b9cbc299bd52cd8bd22e9db4dcfd.tar.gz |
- Changed <br> to - in PHP_INFO output.
Diffstat (limited to 'sapi/apache/php_apache.c')
-rw-r--r-- | sapi/apache/php_apache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 8cff77e6c4..b909da2e02 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -211,10 +211,10 @@ PHP_MINFO_FUNCTION(apache) #if !defined(WIN32) && !defined(WINNT) sprintf(output_buf, "%s(%d)/%d", user_name, (int)user_id, (int)group_id); php_info_print_table_row(2, "User/Group", output_buf); - sprintf(output_buf, "Per Child: %d<br>Keep Alive: %s<br>Max Per Connection: %d", max_requests_per_child, serv->keep_alive ? "on":"off", serv->keep_alive_max); + sprintf(output_buf, "Per Child: %d - Keep Alive: %s - Max Per Connection: %d", max_requests_per_child, serv->keep_alive ? "on":"off", serv->keep_alive_max); php_info_print_table_row(2, "Max Requests", output_buf); #endif - sprintf(output_buf, "Connection: %d<br>Keep-Alive: %d", serv->timeout, serv->keep_alive_timeout); + sprintf(output_buf, "Connection: %d - Keep-Alive: %d", serv->timeout, serv->keep_alive_timeout); php_info_print_table_row(2, "Timeouts", output_buf); #if !defined(WIN32) && !defined(WINNT) php_info_print_table_row(2, "Server Root", server_root); |