diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-07-02 09:21:30 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-07-02 09:21:30 -0400 |
commit | f5f3f205e97c2a3219897dd14de7d57659ce1181 (patch) | |
tree | e89da8c8aa003826b1815cabaf01d1fbcfbb351f /views/default/input/password.php | |
parent | 9e9b28479b6ecfd8685b2bba7f9ae5856ece9b2e (diff) | |
download | elgg-f5f3f205e97c2a3219897dd14de7d57659ce1181.tar.gz elgg-f5f3f205e97c2a3219897dd14de7d57659ce1181.tar.bz2 |
Fixes #3624 input views use class extending rather than overriding
Diffstat (limited to 'views/default/input/password.php')
-rw-r--r-- | views/default/input/password.php | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/views/default/input/password.php b/views/default/input/password.php index 62c8fb53d..45f2b20a6 100644 --- a/views/default/input/password.php +++ b/views/default/input/password.php @@ -7,17 +7,22 @@ * @subpackage Core * * @uses $vars['value'] The current value, if any - * @uses $vars['js'] Any Javascript to enter into the input tag - * @uses $vars['name'] The name of the input field - * + * @uses $vars['name'] The name of the input field + * @uses $vars['class'] Additional CSS class */ +if (isset($vars['class'])) { + $vars['class'] = "elgg-input-password {$vars['class']}"; +} else { + $vars['class'] = "elgg-input-password"; +} + $defaults = array( - 'class' => 'elgg-input-password', - 'disabled' => FALSE, + 'disabled' => false, + 'value' => '', ); $attrs = array_merge($defaults, $vars); ?> -<input type="password" <?php echo elgg_format_attributes($attrs); ?> />
\ No newline at end of file +<input type="password" <?php echo elgg_format_attributes($attrs); ?> /> |