This Erroer at update on v2.4.2
Quote:
Warnung: Invalid argument supplied for foreach() in [path]/includes/mgc_cb_evo/class_display.php (Zeile 698)
|
FIX for this Error:
class_display.php
PHP Code:
// Get commands
if ( count($this->registry->mgc_cb_evo_commands) )
{
foreach ($this->registry->mgc_cb_evo_commands AS $command)
{
// Command inactive
if (!$command['active'])
{
continue;
}
if ($this->evo_core->evo_permissions->can_use_command($command))
{
$show['mgc_cb_evo_command_' . $command['identifier']] = true;
// If autocompletion is active, add commands tips to autocompletion array
if ($this->registry->options['mgc_cb_evo_act_autocompletion'])
{
$append_array = $this->construct_autocompletion_array($command['identifier']);
$autocompletion_js_array = array_merge($autocompletion_js_array,$append_array);
}
}
else
{
$show['mgc_cb_evo_command_' . $command['identifier']] = false;
}
}
}
the Array mgc_cb_evo_commands is not on Registy-Class
on 2. Error is:
i see not the Channels an Chatbox

Permission is okay -- Channels are not active on Chatbox ....
the Array
PHP Code:
mgc_cb_evo_channels
is not definied on vB_Registry Object
PHP Code:
if (is_array($this->registry->mgc_cb_evo_channels))
is NULL
can help me pls ...
thx
Speedy1505