Disable account registering from disabled email provider

This commit is contained in:
Peter Papp
2021-07-23 13:28:40 +02:00
parent 8951ebc69f
commit eaec744356
30 changed files with 733 additions and 71 deletions

View File

@@ -44,7 +44,7 @@ class UploadFileAction
$file_size = File::size($file_path);
// Size of limit
$limit = get_setting('upload_limit');
$limit = get_settings('upload_limit');
// File size handling
if ($limit && $file_size > format_bytes($limit)) {