diff options
author | lavigor <lavigor@users.noreply.github.com> | 2016-01-20 21:34:30 +0300 |
---|---|---|
committer | lavigor <lavigor@users.noreply.github.com> | 2016-01-20 21:34:30 +0300 |
commit | 5832698f4f8be8bcbfd6f53dba5a6aee8d0afe49 (patch) | |
tree | 55517eefe30c3b2dad4b273fc944df461004430d /phpBB/includes/functions_admin.php | |
parent | 0c34641abd8f17331fa00b9d847549ce1e5d99e9 (diff) | |
download | forums-5832698f4f8be8bcbfd6f53dba5a6aee8d0afe49.tar forums-5832698f4f8be8bcbfd6f53dba5a6aee8d0afe49.tar.gz forums-5832698f4f8be8bcbfd6f53dba5a6aee8d0afe49.tar.bz2 forums-5832698f4f8be8bcbfd6f53dba5a6aee8d0afe49.tar.xz forums-5832698f4f8be8bcbfd6f53dba5a6aee8d0afe49.zip |
[ticket/14423] Display database size for Aria storage engine
PHPBB3-14423
Diffstat (limited to 'phpBB/includes/functions_admin.php')
-rw-r--r-- | phpBB/includes/functions_admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 2b70d09fd5..b3641a2b45 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -3112,7 +3112,7 @@ function get_database_size() $database_size = 0; while ($row = $db->sql_fetchrow($result)) { - if ((isset($row['Type']) && $row['Type'] != 'MRG_MyISAM') || (isset($row['Engine']) && ($row['Engine'] == 'MyISAM' || $row['Engine'] == 'InnoDB'))) + if ((isset($row['Type']) && $row['Type'] != 'MRG_MyISAM') || (isset($row['Engine']) && ($row['Engine'] == 'MyISAM' || $row['Engine'] == 'InnoDB' || $row['Engine'] == 'Aria'))) { if ($table_prefix != '') { |