diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-07-29 08:57:21 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-07-29 08:57:21 -0700 |
commit | 6cd31e31afbe08fb0d7ab99f5201f7cb41c9985b (patch) | |
tree | 0e4767bb2cc06b2fd99cfbf5b53d4744c64686ab | |
parent | 529b9ac56c4997ec095a03580b13110e56ed1d14 (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()); |