Changeset 7018

Show
Ignore:
Timestamp:
11/19/08 00:01:57 (7 weeks ago)
Author:
daybreaker
Message:

refs #777: IIS에서 null 경고로 페이지 뜨지 않는 문제 수정

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/library/data/mysql/Adapter.php

    r7001 r7018  
    276276     
    277277    public static function fetch($handle = null, $type = 'assoc') { 
     278        if ($handle == null) return null; 
    278279        if($type == 'array') return mysql_fetch_array($handle); // Can I use mysql_fetch_row instead? 
    279280        else if ($type == 'row') return mysql_fetch_row($handle);