Skip to content

Commit

Permalink
ensure keeping text metadata fields values after failed validation (#459
Browse files Browse the repository at this point in the history
)
  • Loading branch information
dgvirtual authored Mar 26, 2024
1 parent 0bd06e1 commit e748444
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Users/Views/meta/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class="form-check-label"><?= esc(ucwords(strtolower(str_replace(['-', '_'], ' ',
<label for="meta[<?= $field ?>]" class="form-label"><?= esc($info['label']) ?></label>
<?php endif ?>
<textarea class="form-control" rows="3" name="meta[<?= strtolower($field) ?>]"
><?= old('meta[' . strtolower($field) . ']', $user->meta(strtolower($field)) ?? '') ?></textarea>
><?= old('meta.' . strtolower($field), $user->meta(strtolower($field)) ?? '') ?></textarea>
<?php if (has_error('meta.' . $field)) : ?>
<p class="text-danger"><?= error('meta.' . $field) ?></p>
<?php endif ?>
Expand All @@ -39,7 +39,7 @@ class="form-check-label"><?= esc(ucwords(strtolower(str_replace(['-', '_'], ' ',
<label for="meta[<?= $field ?>]" class="form-label"><?= esc($info['label']) ?></label>
<?php endif ?>
<input type="<?= $info['type'] ?>" name="meta[<?= strtolower($field) ?>]" class="form-control" autocomplete="<?= strtolower($field) ?>"
value="<?= old('meta[' . strtolower($field) . ']', $user->meta(strtolower($field)) ?? '') ?>">
value="<?= old('meta.' . strtolower($field), $user->meta(strtolower($field)) ?? '') ?>">
<?php if (has_error('meta.' . $field)) : ?>
<p class="text-danger"><?= error('meta.' . $field) ?></p>
<?php endif ?>
Expand Down

0 comments on commit e748444

Please sign in to comment.