Skip to content

Commit 08b5daa

Browse files
author
Till Brehm
committed
Fixed: FS#3226 - mail_user_update FAIL for changes with quota >2048 MB (Soap Error: quota_error_isint)
1 parent 355feb4 commit 08b5daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/lib/classes/remoting_lib.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ function validateField($field_name, $field_value, $validators) {
542542
}
543543
break;
544544
case 'ISINT':
545-
if(function_exists('filter_var')) {
545+
if(function_exists('filter_var') && $field_value < 2147483647) {
546546
if($field_value != '' && filter_var($field_value, FILTER_VALIDATE_INT) === false) {
547547
$errmsg = $validator['errmsg'];
548548
if(isset($this->wordbook[$errmsg])) {

0 commit comments

Comments
 (0)