Browse Source

call-time pass-by-reference is deprecated in 5.3

experimental/5.3-FPM
Gwynne Raskind 17 years ago
parent
commit
9adf2ed4aa
  1. 2
      ext/pdo_mysql/tests/pdo_mysql_fetch_both.phpt

2
ext/pdo_mysql/tests/pdo_mysql_fetch_both.phpt

@ -49,7 +49,7 @@ $db = MySQLPDOTest::factory();
try {
fetch(2, &$db, 'SELECT 1', array(0 => '1', '1' => '1'));
fetch(2, $db, 'SELECT 1', array(0 => '1', '1' => '1'));
} catch (PDOException $e) {
printf("[001] %s [%s] %s\n",

Loading…
Cancel
Save