diff options
Diffstat (limited to 'settings/templates/users/part.setquota.php')
-rw-r--r-- | settings/templates/users/part.setquota.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/templates/users/part.setquota.php b/settings/templates/users/part.setquota.php index 4b650002a7f..e246a94ad29 100644 --- a/settings/templates/users/part.setquota.php +++ b/settings/templates/users/part.setquota.php @@ -5,7 +5,7 @@ <div class="quota"> <!-- Default storage --> <span><?php p($l->t('Default Quota'));?></span> - <?php if((bool) $_['isadmin']): ?> + <?php if((bool) $_['isAdmin']): ?> <select class='quota' data-inputtitle="<?php p($l->t('Please enter storage quota (ex: "512 MB" or "12 GB")')) ?>"> <option <?php if($_['default_quota'] === 'none') print_unescaped('selected="selected"');?> value='none'> <?php p($l->t('Unlimited'));?> @@ -28,7 +28,7 @@ </option> </select> <?php endif; ?> - <?php if((bool) !$_['isadmin']): ?> + <?php if((bool) !$_['isAdmin']): ?> <select class='quota' disabled="disabled"> <option selected="selected"> <?php p($_['default_quota']);?> |