diff options
Diffstat (limited to 'app/views/auth/index.phtml')
| -rw-r--r-- | app/views/auth/index.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/auth/index.phtml b/app/views/auth/index.phtml index a0aa28256..f11d29ae4 100644 --- a/app/views/auth/index.phtml +++ b/app/views/auth/index.phtml @@ -16,9 +16,9 @@ <option selected="selected"></option> <?php } ?> <option value="form"<?= FreshRSS_Context::systemConf()->auth_type === 'form' ? ' selected="selected"' : '', - cryptAvailable() ? '' : ' disabled="disabled"' ?>><?= _t('admin.auth.form') ?></option> + FreshRSS_password_Util::cryptAvailable() ? '' : ' disabled="disabled"' ?>><?= _t('admin.auth.form') ?></option> <option value="http_auth"<?= FreshRSS_Context::systemConf()->auth_type === 'http_auth' ? ' selected="selected"' : '' ?>> - <?= _t('admin.auth.http') ?> (REMOTE_USER = '<?= httpAuthUser() ?>')</option> + <?= _t('admin.auth.http') ?> (REMOTE_USER = '<?= FreshRSS_http_Util::httpAuthUser() ?>')</option> <option value="none"<?= FreshRSS_Context::systemConf()->auth_type === 'none' ? ' selected="selected"' : '' ?>><?= _t('admin.auth.none') ?></option> </select> </div> |
