No changes after com_users/views/reset/tmpl/default.php - Joomla! Forum - community, help and support


hello,

i need add heading fieldset in reset password form. need heading appear registration form (to display legend). found out code implemented in components/com_users/views/reset/tmpl/default.php. when add, remove or edit code in file, nothing changes on view. can please explain me why happening?

here can see add statement:

code: select all

<legend><?php echo "reset passoword";?></legend>


code: select all

   <?php foreach ($this->form->getfieldsets() $fieldset): ?>
      <p><?php echo jtext::_($fieldset->label); ?></p>      <fieldset>
      <legend><?php echo "reset passoword";?></legend>
         <dl>
         <?php foreach ($this->form->getfieldset($fieldset->name) $name => $field): ?>
            <dt><?php echo $field->label; ?></dt>
            <dd><?php echo $field->input; ?></dd>
         <?php endforeach; ?>
         </dl>
      </fieldset>
      <?php endforeach; ?>


thank in advance!

regards,
ivan

hello,

i sorry stupid question. editing wrong file.

thanks,
ivan





Comments