fix PHP 8.x error as some apps you a string for their only table and not an array

This commit is contained in:
ralf 2022-09-14 14:46:49 +02:00
parent 1989e1a949
commit 22f990eea5

View File

@ -499,7 +499,7 @@ class setup
if($GLOBALS['DEBUG'])
{
echo '<br>register_app(): ' . $appname . ', version: ' . $setup_info[$appname]['version'] . ', tables: ' . implode(', ',$setup_info[$appname]['tables']) . '<br>';
echo '<br>register_app(): ' . $appname . ', version: ' . $setup_info[$appname]['version'] . ', tables: ' . implode(', ',(array)$setup_info[$appname]['tables']) . '<br>';
// _debug_array($setup_info[$appname]);
}