Changeset 5267 for trunk/include/dblayer


Ignore:
Timestamp:
Mar 22, 2010, 9:31:53 PM (14 years ago)
Author:
nikrou
Message:

Fix warning for postgresql installation
Remove unused function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/dblayer/functions_pgsql.inc.php

    r5236 r5267  
    5050                                $password,
    5151                                $database);
    52   $link = pg_connect($connection_string);
     52  $link = @pg_connect($connection_string);
    5353  if (!$link)
    5454  {
     
    5959    return $link;
    6060  }
    61 }
    62 
    63 function pwg_select_db($database=null, $link=null, $die=null)
    64 {
    65   return true;
    6661}
    6762
Note: See TracChangeset for help on using the changeset viewer.