Changeset 2712

Show
Ignore:
Timestamp:
07/04/08 04:21:54 (12 months ago)
Author:
fumiakiy
Message:

Call to convert_filename is required for some DBMS. BugId:80505

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-41/php/lib/mtdb_base.php

    r2708 r2712  
    30143014    } 
    30153015 
     3016    function get_row($query=null,$output=OBJECT,$y=0) { 
     3017        $row = parent::get_row($query, $output, $y); 
     3018        if (is_array($row)) 
     3019            $row = array_map(array($this,"convert_fieldname"), array($row)); 
     3020        return $row[0]; 
     3021    } 
     3022 
    30163023    function get_results($query = null, $output = ARRAY_A) { 
    30173024        $old_result = $this->result;