Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure keeping text metadata fields values after failed validation #459

Merged
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
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
Loading