From 3d179bef2265a203ecaa409b0a5cc3bb4de02597 Mon Sep 17 00:00:00 2001 From: Michael J Rubinsky Date: Fri, 10 Apr 2015 09:17:31 -0400 Subject: [PATCH] Fix variable name. Bug: 13944 --- whups/lib/Form/Admin/AddUser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whups/lib/Form/Admin/AddUser.php b/whups/lib/Form/Admin/AddUser.php index 499259e3f68..e9f6d94637c 100644 --- a/whups/lib/Form/Admin/AddUser.php +++ b/whups/lib/Form/Admin/AddUser.php @@ -41,7 +41,7 @@ public function __construct($vars) } catch (Horde_Auth_Exception $e) { $this->addVariable( _("User"), 'user', 'invalid', true, false, null, - array(sprintf(_("There was an error listing users: %s; %s"), $list->getMessage(), $list->getUserInfo()))); + array(sprintf(_("There was an error listing users: %s; %s"), $e->getMessage(), $e->getUserInfo()))); } } else { $this->addVariable(_("User"), 'user', 'text', true);