diff --git a/functions/pgsql.xml b/functions/pgsql.xml
index 103c9ee9bf..4723f03c26 100644
--- a/functions/pgsql.xml
+++ b/functions/pgsql.xml
@@ -1034,45 +1034,6 @@ for ($i=0; $i<$num; $i++) {
-
-
- pg_connect
- Open a PostgreSQL connection
-
-
- Description
-
-
- int pg_connect
- string conn_string
-
-
-
- Returns a connection index on success, or false if the connection
- could not be made. Opens a connection to a PostgreSQL database.
- The conn_string should be a quoted string.
- The arguments available include dbname
- port, host,
- tty, options,
- user, and password
-
-
- This function returns a connection index that is needed by other
- PostgreSQL functions. You can have multiple connections open at once.
-
-
- The previous syntax of:
- $conn = pg_pconnect ("host", "port", "options", "tty",
- "dbname")
-
- has been deprecated.
-
-
- See also pg_connect.
-
-
-
-
pg_port