Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/com_users/forms/reset_request.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<form>
<fieldset name="default" label="COM_USERS_RESET_REQUEST_LABEL">
<fieldset name="default" label="COM_USERS_RESET_REQUEST_LEGEND">
<field
name="email"
type="email"
Expand Down
5 changes: 2 additions & 3 deletions components/com_users/tmpl/reset/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,8 @@
<form action="<?php echo Route::_('index.php?task=reset.request'); ?>" method="post" id="user-registration" class="com-users-reset__form form-validate form-horizontal well">
<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
<fieldset>
<?php if (isset($fieldset->label)) : ?>
<legend><?php echo Text::_($fieldset->label); ?></legend>
<?php endif; ?>
<legend><?php echo Text::_('COM_USERS_RESET_REQUEST_LEGEND'); ?></legend>
<p><?php echo Text::_('COM_USERS_RESET_REQUEST_LABEL'); ?><p>
<?php echo $this->form->renderFieldset($fieldset->name); ?>
</fieldset>
<?php endforeach; ?>
Expand Down
1 change: 1 addition & 0 deletions language/en-GB/com_users.ini
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ COM_USERS_RESET_REQUEST="If the email address you entered is registered on this
COM_USERS_RESET_REQUEST_ERROR="Error requesting password reset."
COM_USERS_RESET_REQUEST_FAILED="Reset password failed: %s"
COM_USERS_RESET_REQUEST_LABEL="Please enter the email address for your account. A verification code will be sent to you. Once you have received the verification code, you will be able to choose a new password for your account."
COM_USERS_RESET_REQUEST_LEGEND="Password Reset"
COM_USERS_SETTINGS_FIELDSET_LABEL="Basic Settings"
COM_USERS_USER_ALLOWTOURAUTOSTART_LABEL="Allow Auto Starting Tours"
COM_USERS_USER_BACKUPCODE="Backup Code"
Expand Down