Skip to content
Snippets Groups Projects
Commit 6da19199 authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#921 - clients with limit_client set to -1 not shown in reseller list

parent db0a6f29
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment