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
lolo888
ISPConfig 3
Commits
6f03cca3
Commit
6f03cca3
authored
Sep 10, 2014
by
Till Brehm
Browse files
Fixed a issue in reseller limit validation.
parent
4aec3040
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/validate_reseller.inc.php
View file @
6f03cca3
...
...
@@ -36,7 +36,7 @@ class validate_reseller {
function
limit_client
(
$field_name
,
$field_value
,
$validator
)
{
global
$app
;
if
(
$field_value
<=
0
)
{
if
(
$field_value
!=
-
1
&&
$field_value
<=
0
)
{
return
$app
->
tform
->
lng
(
'limit_client_error_positive'
);
}
else
{
return
''
;
...
...
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