Browse Source

Fix non-/Zend tests too

pull/1872/head
Bob Weinand 10 years ago
parent
commit
6bb81d2c5f
  1. 2
      NEWS
  2. 2
      ext/standard/tests/file/fscanf.phpt
  3. 3
      tests/lang/030.phpt

2
NEWS

@ -3,7 +3,7 @@ PHP NEWS
?? ??? 2016 PHP 7.0.7
- Core:
. Fixed Bug #72038 (Function calls with values to a by-ref parameter don't
. Fixed bug #72038 (Function calls with values to a by-ref parameter don't
always throw a notice). (Bob)
- OCI8:

2
ext/standard/tests/file/fscanf.phpt

@ -7,7 +7,7 @@ $filename = dirname(__FILE__)."/fscanf.dat";
var_dump(fscanf());
var_dump(fscanf(array()));
var_dump(fscanf(array(), array(), new stdclass));
var_dump(fscanf(array(), array()));
file_put_contents($filename, "data");

3
tests/lang/030.phpt

@ -24,7 +24,8 @@ $bar1->Name = 'outside';
$bar1->echoName();
$List->echoName();
$bar1 =& foo2(new foo('constructor'));
$foo = new foo('constructor');
$bar1 =& foo2($foo);
$bar1->Name = 'outside';
$bar1->echoName();

Loading…
Cancel
Save