Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix bug #61454 ext\standard\tests\general_functions\bug49847.phpt fails
This commit is contained in:
Anatoliy Belsky 2012-04-03 13:24:31 +02:00
commit 2a8866ba5e

View File

@ -9,7 +9,7 @@ if ($iswin) {
$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);
}