Skip to content

Commit

Permalink
Merge pull request phpbb#4135 from lavigor/ticket/14423
Browse files Browse the repository at this point in the history
[ticket/14423] Display database size for Aria storage engine
  • Loading branch information
marc1706 committed Jan 21, 2016
2 parents 0c34641 + 5832698 commit 91fbdd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpBB/includes/functions_admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 != '')
{
Expand Down

0 comments on commit 91fbdd9

Please sign in to comment.