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
6da19199
Commit
6da19199
authored
Oct 10, 2009
by
tbrehm
Browse files
Fixed: FS#921 - clients with limit_client set to -1 not shown in reseller list
parent
db0a6f29
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/client/reseller_list.php
View file @
6da19199
...
...
@@ -48,7 +48,7 @@ if($_SESSION["s"]["user"]["typ"] != 'admin') die('Access only for administrators
$app
->
uses
(
'listform_actions'
);
$app
->
listform_actions
->
SQLOrderBy
=
'ORDER BY company_name, contact_name, client_id'
;
$app
->
listform_actions
->
SQLExtWhere
=
"limit_client > 0"
;
$app
->
listform_actions
->
SQLExtWhere
=
"
(
limit_client > 0
or limit_client = -1)
"
;
$app
->
listform_actions
->
onLoad
();
...
...
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