summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql
diff options
context:
space:
mode:
authorGwynne Raskind <gwynne@php.net>2009-07-02 10:05:15 +0000
committerGwynne Raskind <gwynne@php.net>2009-07-02 10:05:15 +0000
commit9adf2ed4aa49f3f9672f423a6b254746ae9c5fc9 (patch)
tree5e39ebc000c17640b7625d3e12faf5884f1117ca /ext/pdo_mysql
parentbfad6f6cee72a4ad390a6ba94362593fb94df3a1 (diff)
downloadphp-git-9adf2ed4aa49f3f9672f423a6b254746ae9c5fc9.tar.gz
call-time pass-by-reference is deprecated in 5.3
Diffstat (limited to 'ext/pdo_mysql')
-rw-r--r--ext/pdo_mysql/tests/pdo_mysql_fetch_both.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/tests/pdo_mysql_fetch_both.phpt b/ext/pdo_mysql/tests/pdo_mysql_fetch_both.phpt
index eac6bf331f..a8cbde6ea6 100644
--- a/ext/pdo_mysql/tests/pdo_mysql_fetch_both.phpt
+++ b/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",