pajoye Thu, 28 Jan 2010 21:29:00 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=294164
Log:
- fix test
Changed paths:
U
php/php-src/branches/PHP_5_3/ext/standard/tests/file/fopen_variation17.phpt
U php/php-src/trunk/ext/standard/tests/file/fopen_variation17.phpt
Modified:
php/php-src/branches/PHP_5_3/ext/standard/tests/file/fopen_variation17.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/standard/tests/file/fopen_variation17.phpt
2010-01-28 20:52:35 UTC (rev 294163)
+++ php/php-src/branches/PHP_5_3/ext/standard/tests/file/fopen_variation17.phpt
2010-01-28 21:29:00 UTC (rev 294164)
@@ -37,7 +37,7 @@
mkdir($dir1.'/'.$extraDir);
mkdir($extraDir);
- $tmpfile = $extraDir.'/ basename(__FILE__, ".php") . ".tmp"';
+ $tmpfile = $extraDir . '/' . basename(__FILE__, ".php") . ".tmp";
$h = fopen($tmpfile, "w+", true);
fwrite($h, (binary) "This is the test file");
fclose($h);
Modified: php/php-src/trunk/ext/standard/tests/file/fopen_variation17.phpt
===================================================================
--- php/php-src/trunk/ext/standard/tests/file/fopen_variation17.phpt
2010-01-28 20:52:35 UTC (rev 294163)
+++ php/php-src/trunk/ext/standard/tests/file/fopen_variation17.phpt
2010-01-28 21:29:00 UTC (rev 294164)
@@ -37,7 +37,7 @@
mkdir($dir1.'/'.$extraDir);
mkdir($extraDir);
- $tmpfile = $extraDir.'/ basename(__FILE__, ".php") . ".tmp"';
+ $tmpfile = $extraDir . '/' . basename(__FILE__, ".php") . ".tmp";
$h = fopen($tmpfile, "w+", true);
fwrite($h, (binary) "This is the test file");
fclose($h);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php