Changeset 1986
- Timestamp:
- 04/18/08 17:25:58 (19 months ago)
- Files:
-
- 1 modified
-
branches/release-35/php/lib/mtdb_base.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-35/php/lib/mtdb_base.php
r1985 r1986 2844 2844 2845 2845 function get_results($query = null, $output = ARRAY_A) { 2846 $old_result = $this->result; 2846 2847 $rows = parent::get_results($query, $output); 2847 2848 if (is_array($rows)) { 2848 2849 $rows = array_map(array($this,"convert_fieldname"), $rows); 2849 2850 } 2850 return $this->expand_meta($rows); 2851 $result = $this->expand_meta($rows); 2852 $this->result = $old_result; 2853 return $result; 2851 2854 } 2852 2855
