Update to latest version

This commit is contained in:
genuineparts 2025-06-24 23:26:25 +02:00
parent 8a89842ec6
commit fe9ecfad73
77 changed files with 1701 additions and 5404 deletions

View file

@ -22,7 +22,7 @@
* @author Bernhard Jaud <bernhard at becast dot at>
* @package BeCast Webengine core
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id$
* @version $Id: 28fe87cea02728845f7d402ec06e0268a2b4d472 $
*/
ERROR_REPORTING(E_ALL ^E_NOTICE);
$basepath="";
@ -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'];