From: Yasuo Ohgaki Date: Thu, 10 Jan 2002 06:44:02 +0000 (+0000) Subject: Fix bug in test script X-Git-Tag: PRE_ISSET_PATCH~231 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d819fc0cfc52723b7ef9d5d0c493b609b834891;p=php Fix bug in test script --- diff --git a/ext/pgsql/tests/dropdb.inc b/ext/pgsql/tests/dropdb.inc index 3e80abe3cd..eaf33ae742 100644 --- a/ext/pgsql/tests/dropdb.inc +++ b/ext/pgsql/tests/dropdb.inc @@ -3,7 +3,7 @@ include('config.inc'); -pg_connect($conn_str); +$db = pg_connect($conn_str); pg_query($db, "DROP TABLE ".$table_name); echo "OK";