Skip to content

Commit

Permalink
Fix variable name. Bug: 13944
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Apr 10, 2015
1 parent 068f25f commit 3d179be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whups/lib/Form/Admin/AddUser.php
Expand Up @@ -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);
Expand Down

0 comments on commit 3d179be

Please sign in to comment.