diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-15 01:27:40 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-15 01:27:40 +0000 |
commit | af2f3805095f8a91d85847e11faeb280fddf58c0 (patch) | |
tree | 221ef519a94523d494511ba33acb3f34f68f04c0 /views/default/core/settings/account | |
parent | 9af0f9be12346d2008cf6de6e5ab7bd083c09c8c (diff) | |
download | elgg-af2f3805095f8a91d85847e11faeb280fddf58c0.tar.gz elgg-af2f3805095f8a91d85847e11faeb280fddf58c0.tar.bz2 |
Fixes #2921: converted internalname => name and internalid => id
git-svn-id: http://code.elgg.org/elgg/trunk@8249 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/core/settings/account')
6 files changed, 9 insertions, 9 deletions
diff --git a/views/default/core/settings/account/default_access.php b/views/default/core/settings/account/default_access.php index 67a0a4137..e33211460 100644 --- a/views/default/core/settings/account/default_access.php +++ b/views/default/core/settings/account/default_access.php @@ -22,7 +22,7 @@ if (elgg_get_config('allow_user_default_access')) { <?php echo elgg_echo('default_access:label'); ?>: <?php - echo elgg_view('input/access', array('internalname' => 'default_access', 'value' => $default_access)); + echo elgg_view('input/access', array('name' => 'default_access', 'value' => $default_access)); ?> </p> diff --git a/views/default/core/settings/account/email.php b/views/default/core/settings/account/email.php index 3782d39a8..fda83e795 100644 --- a/views/default/core/settings/account/email.php +++ b/views/default/core/settings/account/email.php @@ -18,7 +18,7 @@ if ($user) { <p> <?php echo elgg_echo('email:address:label'); ?>: <?php - echo elgg_view('input/email',array('internalname' => 'email', 'value' => $user->email)); + echo elgg_view('input/email',array('name' => 'email', 'value' => $user->email)); ?> </p> </div> diff --git a/views/default/core/settings/account/language.php b/views/default/core/settings/account/language.php index a1e8d9886..3a992966f 100644 --- a/views/default/core/settings/account/language.php +++ b/views/default/core/settings/account/language.php @@ -19,7 +19,7 @@ if ($user) { <?php echo elgg_echo('user:language:label'); ?>: <?php echo elgg_view("input/dropdown", array( - 'internalname' => 'language', + 'name' => 'language', 'value' => $user->language, 'options_values' => get_installed_translations() )); diff --git a/views/default/core/settings/account/name.php b/views/default/core/settings/account/name.php index 22f950925..69ffcecaf 100644 --- a/views/default/core/settings/account/name.php +++ b/views/default/core/settings/account/name.php @@ -11,5 +11,5 @@ $user = elgg_get_page_owner_entity(); // all hidden, but necessary for properly updating user details -echo elgg_view('input/hidden', array('internalname' => 'name', 'value' => $user->name)); -echo elgg_view('input/hidden', array('internalname' => 'guid', 'value' => $user->guid)); +echo elgg_view('input/hidden', array('name' => 'name', 'value' => $user->name)); +echo elgg_view('input/hidden', array('name' => 'guid', 'value' => $user->guid)); diff --git a/views/default/core/settings/account/notifications.php b/views/default/core/settings/account/notifications.php index decf000ea..ae5fe40bb 100644 --- a/views/default/core/settings/account/notifications.php +++ b/views/default/core/settings/account/notifications.php @@ -36,7 +36,7 @@ $notification_settings = get_user_notification_settings(elgg_get_page_owner_guid } echo elgg_view('input/radio', array( - 'internalname' => "method[$k]", + 'name' => "method[$k]", 'value' => $val, 'options' => array( elgg_echo('option:yes') => 'yes', 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> |