diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-07-29 08:57:21 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-07-31 15:44:56 -0700 |
commit | 0c535c85ed7eb5d852ff18715287dd63f85903ac (patch) | |
tree | d5271e42a075c4fa829ab7b9a9008baefc21ba31 | |
parent | 29f29d2261c96c30eb3e63a8066e80ade5497081 (diff) |
Missing the user name on the reauthenticate form.
-rw-r--r-- | modules/gallery/controllers/reauthenticate.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gallery/controllers/reauthenticate.php b/modules/gallery/controllers/reauthenticate.php index 5ea2f229..393f97cb 100644 --- a/modules/gallery/controllers/reauthenticate.php +++ b/modules/gallery/controllers/reauthenticate.php @@ -28,6 +28,7 @@ class Reauthenticate_Controller extends Controller { if ($is_ajax) { $v = new View("reauthenticate.html"); $v->form = self::_form(); + $v->user_name = identity::active_user()->name; json::reply(array("form" => (string) $v)); } else { self::_show_form(self::_form()); |