summaryrefslogtreecommitdiff
path: root/resources/views
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2022-12-01 12:42:51 +0000
committerGreg Roach <greg@subaqua.co.uk>2022-12-01 12:43:09 +0000
commite3132a19b5bc5679ad08fb96ad3f19dbb09f5849 (patch)
tree568fe35061cfc13b0c279664405d9ed9aeb2c1ce /resources/views
parent4c2188e419e716910897d0d969a178d28784c56a (diff)
downloadwebtrees-e3132a19b5bc5679ad08fb96ad3f19dbb09f5849.tar.gz
webtrees-e3132a19b5bc5679ad08fb96ad3f19dbb09f5849.tar.bz2
webtrees-e3132a19b5bc5679ad08fb96ad3f19dbb09f5849.zip
Fix: #4619 - cannot create new objects without a restriction
Diffstat (limited to 'resources/views')
-rw-r--r--resources/views/modals/restriction-fields.phtml8
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/views/modals/restriction-fields.phtml b/resources/views/modals/restriction-fields.phtml
index 042826670b..06625a6fb3 100644
--- a/resources/views/modals/restriction-fields.phtml
+++ b/resources/views/modals/restriction-fields.phtml
@@ -13,16 +13,16 @@ use Fisharebest\Webtrees\I18N;
<div class="col-sm-10">
<select class="form-select" id="restriction" name="restriction">
<option value="">&nbsp;</option>
- <option value="none">
+ <option value="NONE">
<?= I18N::translate('Show to visitors') ?>
</option>
- <option value="privacy">
+ <option value="PRIVACY">
<?= I18N::translate('Show to members') ?>
</option>
- <option value="confidential">
+ <option value="CONFIDENTIAL">
<?= I18N::translate('Show to managers') ?>
</option>
- <option value="locked">
+ <option value="LOCKED">
<?= I18N::translate('Only managers can edit') ?>
</option>
</select>