diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2020-09-09 15:49:05 +0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2020-09-09 15:50:30 +0200 |
| commit | 9a6c22da7030bd630a7ea00251d1d59fd1197c4f (patch) | |
| tree | 60e8adc38922ac061dd3d7cce1098c46969bef60 /ext/pgsql/tests | |
| parent | ee9948bc46f2db44791231d8af8307d073f732f1 (diff) | |
| download | php-git-9a6c22da7030bd630a7ea00251d1d59fd1197c4f.tar.gz | |
Remove deprecated pgsql signatures
As the comment indicates, these are deprecated in PHP 4.2...
Diffstat (limited to 'ext/pgsql/tests')
| -rw-r--r-- | ext/pgsql/tests/05large_object.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pgsql/tests/05large_object.phpt b/ext/pgsql/tests/05large_object.phpt index df47d07404..3a4a40eb08 100644 --- a/ext/pgsql/tests/05large_object.phpt +++ b/ext/pgsql/tests/05large_object.phpt @@ -61,7 +61,7 @@ $oid = pg_lo_import($db, $path . 'php.gif'); pg_query($db, 'commit'); pg_query($db, 'begin'); @unlink($path . 'php.gif.exported'); -pg_lo_export($oid, $path . 'php.gif.exported', $db); +pg_lo_export($db, $oid, $path . 'php.gif.exported'); if (!file_exists($path . 'php.gif.exported')) { echo "Export failed\n"; } |
