summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2010-07-29 08:57:21 -0700
committerBharat Mediratta <bharat@menalto.com>2010-07-31 15:44:56 -0700
commit0c535c85ed7eb5d852ff18715287dd63f85903ac (patch)
treed5271e42a075c4fa829ab7b9a9008baefc21ba31 /modules/gallery/controllers
parent29f29d2261c96c30eb3e63a8066e80ade5497081 (diff)
Missing the user name on the reauthenticate form.
Diffstat (limited to 'modules/gallery/controllers')
-rw-r--r--modules/gallery/controllers/reauthenticate.php1
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());