Skip to content
Snippets Groups Projects
Commit db99e9f9 authored by Marius Cramer's avatar Marius Cramer
Browse files

Fixed invalid query in vhost domain list

parent 47219676
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ class list_action extends listform_actions {
}
$list = new list_action;
$list->SQLExtWhere = "web_domain.type = '" . $query_type . "'" . ($show_type != 'domain' ? " AND web_domain.parent_domain_id = '0'" : "");
$list->SQLExtWhere = "web_domain.type = '" . $query_type . "'" . ($show_type == 'domain' ? " AND web_domain.parent_domain_id = '0'" : "");
$list->SQLOrderBy = 'ORDER BY web_domain.domain';
$list->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