Skip to content
Snippets Groups Projects
Commit 08b5daac authored by Till Brehm's avatar Till Brehm
Browse files

Fixed: FS#3226 - mail_user_update FAIL for changes with quota >2048 MB (Soap...

Fixed: FS#3226 - mail_user_update FAIL for changes with quota >2048 MB (Soap Error: quota_error_isint)
parent 355feb42
No related branches found
No related tags found
No related merge requests found
...@@ -542,7 +542,7 @@ class remoting_lib { ...@@ -542,7 +542,7 @@ class remoting_lib {
} }
break; break;
case 'ISINT': case 'ISINT':
if(function_exists('filter_var')) { if(function_exists('filter_var') && $field_value < 2147483647) {
if($field_value != '' && filter_var($field_value, FILTER_VALIDATE_INT) === false) { if($field_value != '' && filter_var($field_value, FILTER_VALIDATE_INT) === false) {
$errmsg = $validator['errmsg']; $errmsg = $validator['errmsg'];
if(isset($this->wordbook[$errmsg])) { if(isset($this->wordbook[$errmsg])) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment