Skip to content

Commit 6da1919

Browse files
committed
Fixed: FS#921 - clients with limit_client set to -1 not shown in reseller list
1 parent db0a6f2 commit 6da1919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/client/reseller_list.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
$app->uses('listform_actions');
4949

5050
$app->listform_actions->SQLOrderBy = 'ORDER BY company_name, contact_name, client_id';
51-
$app->listform_actions->SQLExtWhere = "limit_client > 0";
51+
$app->listform_actions->SQLExtWhere = "(limit_client > 0 or limit_client = -1)";
5252
$app->listform_actions->onLoad();
5353

5454

0 commit comments

Comments
 (0)