Fixed format bug

This commit is contained in:
Ilia Alshanetsky 2003-08-28 17:48:58 +00:00
parent 237da469d7
commit 21d5061038

View file

@ -416,7 +416,7 @@ PHP_FUNCTION(apache_lookup_uri)
convert_to_string_ex(filename); convert_to_string_ex(filename);
if(!(rr = sub_req_lookup_uri((*filename)->value.str.val, ((request_rec *) SG(server_context))))) { 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; RETURN_FALSE;
} }
object_init(return_value); object_init(return_value);