Ignore:
Timestamp:
2013/08/02 13:22:57 (11 years ago)
Author:
Seasoft
Message:

#2322 (セッションのGC処理がエラーとなる)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/module/MDB2/Driver/Native/pgsql.php

    r20764 r23022  
    4343// +----------------------------------------------------------------------+ 
    4444// 
    45 // $Id: pgsql.php,v 1.12 2006/07/15 13:07:15 lsmith Exp $ 
     45// $Id: pgsql.php 327310 2012-08-27 15:16:18Z danielc $ 
    4646 
    4747require_once 'MDB2/Driver/Native/Common.php'; 
     
    6868    function deleteOID($OID) 
    6969    { 
    70         $db =& $this->getDBInstance(); 
    71         if (PEAR::isError($db)) { 
     70        $db = $this->getDBInstance(); 
     71        if (MDB2::isError($db)) { 
    7272            return $db; 
    7373        } 
    7474 
    7575        $connection = $db->getConnection(); 
    76         if (PEAR::isError($connection)) { 
     76        if (MDB2::isError($connection)) { 
    7777            return $connection; 
    7878        } 
Note: See TracChangeset for help on using the changeset viewer.