Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/classes/Display/ChangePassword.php')
-rw-r--r--libraries/classes/Display/ChangePassword.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/libraries/classes/Display/ChangePassword.php b/libraries/classes/Display/ChangePassword.php
index f9b8c6e25a..b15776d6e9 100644
--- a/libraries/classes/Display/ChangePassword.php
+++ b/libraries/classes/Display/ChangePassword.php
@@ -11,6 +11,7 @@ namespace PhpMyAdmin\Display;
use PhpMyAdmin\Message;
use PhpMyAdmin\Server\Privileges;
+use PhpMyAdmin\Template;
use PhpMyAdmin\Url;
use PhpMyAdmin\Util;
@@ -33,7 +34,7 @@ class ChangePassword
*/
public static function getHtml($mode, $username, $hostname)
{
- $serverPrivileges = new Privileges();
+ $serverPrivileges = new Privileges(new Template());
/**
* autocomplete feature of IE kills the "onchange" event handler and it
* must be replaced by the "onpropertychange" one in this case