diff options
-rw-r--r-- | sapi/apache/php_apache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index 680f75d30d..a59336a38c 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -416,7 +416,7 @@ PHP_FUNCTION(apache_lookup_uri) convert_to_string_ex(filename); if(!(rr = sub_req_lookup_uri((*filename)->value.str.val, ((request_rec *) SG(server_context))))) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "URI lookup failed", (*filename)->value.str.val); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "URI lookup failed '%s'", (*filename)->value.str.val); RETURN_FALSE; } object_init(return_value); |