Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dirk Dankhoff
ISPConfig 3
Commits
d6f9e1cf
Commit
d6f9e1cf
authored
Jan 04, 2012
by
tbrehm
Browse files
Fixed: FS#1953 - SOAP method mail_user_update limits quota to about 2GB
parent
990a55dc
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/remoting_lib.inc.php
View file @
d6f9e1cf
...
...
@@ -208,7 +208,13 @@ class remoting_lib {
break
;
case
'INTEGER'
:
$new_record
[
$key
]
=
intval
(
$record
[
$key
]);
//* We use + 0 to force the string to be a number as
//* intval return value is too limited on 32bit systems
if
(
intval
(
$record
[
$key
])
==
2147483647
)
{
$new_record
[
$key
]
=
$record
[
$key
]
+
0
;
}
else
{
$new_record
[
$key
]
=
intval
(
$record
[
$key
]);
}
break
;
case
'DOUBLE'
:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment