diff options
Diffstat (limited to 'app/Controllers/userController.php')
| -rw-r--r-- | app/Controllers/userController.php | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php index 9bcf13d6f..f23ae008e 100644 --- a/app/Controllers/userController.php +++ b/app/Controllers/userController.php @@ -317,8 +317,14 @@ class FreshRSS_user_Controller extends FreshRSS_ActionController { ); } - $tos_enabled = file_exists(TOS_FILENAME); - $accept_tos = Minz_Request::paramBoolean('accept_tos'); + if (!FreshRSS_Auth::hasAccess('admin')) { + // TODO: We may want to ask the user to accept TOS before first login + $tos_enabled = file_exists(TOS_FILENAME); + $accept_tos = Minz_Request::paramBoolean('accept_tos'); + if ($tos_enabled && !$accept_tos) { + Minz_Request::bad(_t('user.tos.feedback.invalid'), $badRedirectUrl); + } + } if (FreshRSS_Context::systemConf()->force_email_validation && empty($email)) { Minz_Request::bad( @@ -334,13 +340,6 @@ class FreshRSS_user_Controller extends FreshRSS_ActionController { ); } - if ($tos_enabled && !$accept_tos) { - Minz_Request::bad( - _t('user.tos.feedback.invalid'), - $badRedirectUrl - ); - } - $ok = self::createUser($new_user_name, $email, $passwordPlain, [ 'language' => Minz_Request::paramString('new_user_language') ?: FreshRSS_Context::userConf()->language, 'timezone' => Minz_Request::paramString('new_user_timezone'), |
