Patch bug49847.diff for *General Issues Bug #61454
Patch version 2012-03-20 13:49 UTC
Return to Bug #61454 |
Download this patch
Patch Revisions:
Developer: ab@php.net
Index: ext/standard/tests/general_functions/bug49847.phpt
===================================================================
--- ext/standard/tests/general_functions/bug49847.phpt (Revision 324268)
+++ ext/standard/tests/general_functions/bug49847.phpt (Arbeitskopie)
@@ -9,7 +9,7 @@
$s = str_repeat(' ', 4097);
$s .= '1';
file_put_contents($f, $s);
- exec('more ' . $f, $output);
+ exec('type ' . $f, $output);
} else {
exec("printf %4098d 1", $output);
}
|