Changeset 518 in subversion


Ignore:
Timestamp:
Mar 23, 2007 2:50:32 PM (6 years ago)
Author:
fourat.zouari
Message:

close #1484280
Refixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_db.inc

    r516 r518  
    361361  function _fetch_row($result, $mode) 
    362362    { 
    363     if (!$result || !is_object($result) || DB::isError($result)) 
     363    if (!$result || DB::isError($result)) 
    364364      { 
    365365      raise_error(array('code' => 500, 'type' => 'db', 'line' => __LINE__, 'file' => __FILE__, 
     
    367367      return FALSE; 
    368368      } 
     369      elseif (!is_object($result)) 
     370      return FALSE; 
    369371                          
    370372    return $result->fetchRow($mode); 
Note: See TracChangeset for help on using the changeset viewer.