diff --git a/admin/index.php b/admin/index.php index 5dca4fa..28fe87c 100644 --- a/admin/index.php +++ b/admin/index.php @@ -80,6 +80,9 @@ if(isset($session->userdata['uid']) && $session->userdata['uid']!=0 && ($sessio $result = $db->query("SHOW TABLE STATUS"); while ($row = $db->fetch_array($result)) { + if(empty($row['Rows'])){ + $row['Rows'] = 0; + } $total_rows += $row['Rows']; $total_data += $row['Data_length']; $total_index += $row['Index_length'];