Fix configtest to use correct PostgreSQL connection function. (#1166228).
authorjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 19 Mar 2005 04:41:09 +0000 (04:41 +0000)
committerjangliss <jangliss@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sat, 19 Mar 2005 04:41:09 +0000 (04:41 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9072 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
src/configtest.php

index 1907e78ef6f3dc8cc530fd13f584541d840b5cce..401544228991f44a7db7796009fb2c9aadc0ef3e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -246,15 +246,17 @@ Version 1.5.1 -- CVS
   - Change defaults of some prefs to more sensible / usable settings.
   - Revise the documentation of the packaged plugins.
   - Fixed edit form checks in address listing (#1124018).
-  - After sending resumed draft, return to message list
+  - After sending resumed draft, return to message list.
   - Parse and replace mailto: links with internal compose links when 
-    viewing in HTML format
+    viewing in HTML format.
   - Plugins may now define an "extra" array element to return to the attachment
-    types hook, which will be also inserted in the attachment link for the plugin
-  - Added mouseover row highlighting on message index
-  - Added <label> for checkboxes on message index (when highlighting is off)
-  - Fixed mailto: parsing in functions/url_parser.php
-  - Fixed broken signout page (plugins work here again)
+    types hook, which will be also inserted in the attachment link for the
+    plugin.
+  - Added mouseover row highlighting on message index.
+  - Added <label> for checkboxes on message index (when highlighting is off).
+  - Fixed mailto: parsing in functions/url_parser.php.
+  - Fixed broken signout page (plugins work here again).
+  - Fixed configtest to use correct PostgreSQL connection function (#1166228).
 
 Version 1.5.0
 --------------------
index e65c147c5707fda2c217349780a0aa75d1e140f8..4b6698e6306047e581fa13f4ff2952af6ceaeb7d 100644 (file)
@@ -361,7 +361,7 @@ if($addrbook_dsn || $prefs_dsn || $addrbook_global_dsn) {
             'mysqli' => 'mysqli_connect',
             'oci8' => 'ocilogon',
             'odbc' => 'odbc_connect',
-            'pgsql' => 'pgsql_connect',
+            'pgsql' => 'pg_connect',
             'sqlite' => 'sqlite_open',
             'sybase' => 'sybase_connect'
             );