summaryrefslogtreecommitdiffstats
path: root/inc/render.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/render.inc.php')
-rw-r--r--inc/render.inc.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/render.inc.php b/inc/render.inc.php
index fc64203e..5827dcf9 100644
--- a/inc/render.inc.php
+++ b/inc/render.inc.php
@@ -179,8 +179,10 @@ class Render
// Always add token to parameter list
if (is_array($params) || $params === false || is_null($params))
$params['token'] = Session::get('token');
- // Likewise, add currently selected language ( its two letter code) to params
+ // Likewise, add currently selected language (its two letter code) to params
$params['current_lang'] = LANG;
+ // Add desired password field type
+ $params['password_type'] = Property::getPasswordFieldType();
// Return rendered html
return self::$mustache->render($html, array_merge($dictionary,$params));
}