diff options
author | Nuno Lopes <nlopess@php.net> | 2012-01-23 09:22:38 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2012-01-23 09:22:38 +0000 |
commit | 773f4c524270a5c92ce95d824237d509b49e31eb (patch) | |
tree | d4a07dd122030429f2f5c99b7673fb72bcb60704 /ext/tidy | |
parent | 45a6f8d9a551a5ad25717aea363b26db5e26a932 (diff) | |
download | php-git-773f4c524270a5c92ce95d824237d509b49e31eb.tar.gz |
minor tweak to warning to fix the bug54682.phpt test
Diffstat (limited to 'ext/tidy')
-rw-r--r-- | ext/tidy/tidy.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |