Skip to content
Snippets Groups Projects
Commit bc1e70a3 authored by Florian Schaal's avatar Florian Schaal
Browse files

remove sys_groupid from output

parent 85851254
No related branches found
No related tags found
No related merge requests found
......@@ -139,8 +139,8 @@ class tools_monitor {
foreach($data as $line) {
$html .= '<tr>';
if ($line['size'] > 0) $line['size'] = $app->functions->formatBytes($line['size']);
//* get the username
$line['sys_groupid']=$app->db->queryOneRecord("SELECT client.username FROM web_database, sys_group, client WHERE web_database.sys_groupid = sys_group.groupid AND sys_group.client_id = client.client_id AND web_database.database_name='".$line['name']."'")['username'];
//* remove sys_groupid from output
unset($line['sys_groupid']);
//* get the domain
$line['domain']=$app->db->queryOneRecord("SELECT domain FROM web_domain WHERE domain_id=(SELECT parent_domain_id FROM web_database WHERE database_name='".$line['name']."')")['domain'];
foreach ($line as $item) {
......
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