aboutsummaryrefslogtreecommitdiff
path: root/views/default/core/settings/account/password.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/core/settings/account/password.php')
-rw-r--r--views/default/core/settings/account/password.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/views/default/core/settings/account/password.php b/views/default/core/settings/account/password.php
index 06e59dfbb..a80f3df6b 100644
--- a/views/default/core/settings/account/password.php
+++ b/views/default/core/settings/account/password.php
@@ -22,7 +22,7 @@ if ($user) {
<p>
<?php echo elgg_echo('user:current_password:label'); ?>:
<?php
- echo elgg_view('input/password', array('internalname' => 'current_password'));
+ echo elgg_view('input/password', array('name' => 'current_password'));
?>
</p>
<?php } ?>
@@ -30,13 +30,13 @@ if ($user) {
<p>
<?php echo elgg_echo('user:password:label'); ?>:
<?php
- echo elgg_view('input/password', array('internalname' => 'password'));
+ echo elgg_view('input/password', array('name' => 'password'));
?>
</p>
<p>
<?php echo elgg_echo('user:password2:label'); ?>: <?php
- echo elgg_view('input/password', array('internalname' => 'password2'));
+ echo elgg_view('input/password', array('name' => 'password2'));
?>
</p>
</div>