mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-14 21:02:31 +02:00
[ticket/14423] Display database size for Aria storage engine
PHPBB3-14423
This commit is contained in:
parent
0c34641abd
commit
5832698f4f
@ -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 != '')
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user