Patch fpm_status_not_null_patch for Unknown/Other Function Bug #62205
Patch version 2012-06-01 08:36 UTC
Return to Bug #62205 |
Download this patch
Patch Revisions:
Developer: alp@rsu.ru
--- php5-5.3.10/sapi/fpm/fpm/fpm_status.c 2012-06-01 04:00:43.492744472 -0400
+++ php5-5.3.10/sapi/fpm/fpm/fpm_status.c 2012-06-01 04:03:59.233040497 -0400
@@ -125,7 +125,7 @@
}
/* full status ? */
- full = SG(request_info).request_uri && strstr(SG(request_info).query_string, "full");
+ full = SG(request_info).query_string && strstr(SG(request_info).query_string, "full");
short_syntax = short_post = NULL;
full_separator = full_pre = full_syntax = full_post = NULL;
encode = 0;
|