From 773f4c524270a5c92ce95d824237d509b49e31eb Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Mon, 23 Jan 2012 09:22:38 +0000 Subject: [PATCH] minor tweak to warning to fix the bug54682.phpt test --- ext/tidy/tidy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index 7dcd7b1b95..88f40badc2 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -1235,7 +1235,7 @@ static PHP_FUNCTION(tidy_parse_file) obj = (PHPTidyObj *) zend_object_store_get_object(return_value TSRMLS_CC); if (!(contents = php_tidy_file_to_mem(inputfile, use_include_path, &contents_len TSRMLS_CC))) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot Load '%s' into memory %s", inputfile, (use_include_path) ? "(Using include path)" : ""); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Cannot Load '%s' into memory%s", inputfile, (use_include_path) ? " (Using include path)" : ""); RETURN_FALSE; } -- 2.40.0