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

cosmetical fix for db-quota

parent b6311941
No related branches found
No related tags found
1 merge request!352Master
...@@ -80,6 +80,8 @@ class list_action extends listform_actions { ...@@ -80,6 +80,8 @@ class list_action extends listform_actions {
$client = $app->db->queryOneRecord("SELECT * FROM client WHERE client_id = ?", $sys_group['client_id']); $client = $app->db->queryOneRecord("SELECT * FROM client WHERE client_id = ?", $sys_group['client_id']);
$rec['client'] = $client['username']; $rec['client'] = $client['username'];
$rec['used'] = 'n/a'; $rec['used'] = 'n/a';
if (empty($rec['database_quota'])) $rec['database_quota'] = 0;
$rec['quota'] = $rec['database_quota'];
$rec['quota'] = 'n/a'; $rec['quota'] = 'n/a';
} }
$rec['id'] = $rec[$this->idx_key]; $rec['id'] = $rec[$this->idx_key];
......
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