diff --git a/mod_http_upload/README.txt b/mod_http_upload/README.txt index 36d379a..a359f10 100644 --- a/mod_http_upload/README.txt +++ b/mod_http_upload/README.txt @@ -8,9 +8,9 @@ DESCRIPTION ----------- -This module allows for requesting permissions to upload a file via HTTP. -If the request is accepted, the client receives a URL to use for uploading -the file and another URL from which that file can later be downloaded. +This module allows for requesting permissions to upload a file via HTTP. If +the request is accepted, the client receives a URL to use for uploading the +file and another URL from which that file can later be downloaded. Automatic quota management can be configured by also enabling mod_http_upload_quota. diff --git a/mod_http_upload/src/mod_http_upload.erl b/mod_http_upload/src/mod_http_upload.erl index 8d517b8..eb85dc3 100644 --- a/mod_http_upload/src/mod_http_upload.erl +++ b/mod_http_upload/src/mod_http_upload.erl @@ -153,7 +153,7 @@ mod_opt_type(access) -> fun(A) when is_atom(A) -> A end; mod_opt_type(max_size) -> fun(I) when is_integer(I), I > 0 -> I; - (infinity) -> infinity + (infinity) -> infinity end; mod_opt_type(secret_length) -> fun(I) when is_integer(I), I >= 8 -> I end;