Index: /branches/release-36/lib/MT/Author.pm
===================================================================
--- /branches/release-36/lib/MT/Author.pm (revision 1927)
+++ /branches/release-36/lib/MT/Author.pm (revision 2060)
@@ -29,5 +29,6 @@
         'status' => 'integer',
         'external_id' => 'string(255)',
-#        'last_login' => 'datetime',
+        #'last_login' => 'datetime',
+
         # deprecated; permissions are in MT::Permission only now
         'can_create_blog' => 'boolean',
@@ -53,7 +54,8 @@
         status => 1,
         external_id => 1,
-        auth_type => 1,
+        auth_type_name => {
+            columns => ['auth_type', 'name', 'type'],
+        },
         basename => 1,
-        # is_superuser => 1,
     },
     meta => 1,
@@ -702,4 +704,11 @@
         %param,
     );
+    if ($info[0] !~ m!^https?://!) {
+        my $static_host = MT->instance->static_path;
+        if ($static_host =~ m!^https?://!) {
+            $static_host =~ s!^(https?://[^/]+?)!$1!;
+            $info[0] = $static_host . $info[0];
+        }
+    }
     return wantarray ? @info : $info[0];
 }
