aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_admin.php
diff options
context:
space:
mode:
authorlavigor <lavigor@users.noreply.github.com>2016-01-20 21:34:30 +0300
committerlavigor <lavigor@users.noreply.github.com>2016-01-20 21:34:30 +0300
commit5832698f4f8be8bcbfd6f53dba5a6aee8d0afe49 (patch)
tree55517eefe30c3b2dad4b273fc944df461004430d /phpBB/includes/functions_admin.php
parent0c34641abd8f17331fa00b9d847549ce1e5d99e9 (diff)
downloadforums-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.php2
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 != '')
{