Index: branches/release-41/php/lib/mtdb_base.php
===================================================================
--- branches/release-41/php/lib/mtdb_base.php (revision 2708)
+++ branches/release-41/php/lib/mtdb_base.php (revision 2712)
@@ -3014,4 +3014,11 @@
     }
 
+    function get_row($query=null,$output=OBJECT,$y=0) {
+        $row = parent::get_row($query, $output, $y);
+        if (is_array($row))
+            $row = array_map(array($this,"convert_fieldname"), array($row));
+        return $row[0];
+    }
+
     function get_results($query = null, $output = ARRAY_A) {
         $old_result = $this->result;
