We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b631194 commit e96469eCopy full SHA for e96469e
1 file changed
interface/web/sites/database_quota_stats.php
@@ -80,6 +80,8 @@ function prepareDataRow($rec) {
80
$client = $app->db->queryOneRecord("SELECT * FROM client WHERE client_id = ?", $sys_group['client_id']);
81
$rec['client'] = $client['username'];
82
$rec['used'] = 'n/a';
83
+ if (empty($rec['database_quota'])) $rec['database_quota'] = 0;
84
+ $rec['quota'] = $rec['database_quota'];
85
$rec['quota'] = 'n/a';
86
}
87
$rec['id'] = $rec[$this->idx_key];
0 commit comments