Все было нормально и сегодня появилась такая ошибка в админке. подскажите решение
Fatal error: Cannot redeclare xfieldsdatasave() (previously declared in /var/root/data/www/site.ru/engine/cache/system/plugins/b4533a126d40d4472595c510b230f3e5.php:207) in /var/root/data/www/site.ru/engine/alloha/func.php on line 207
Fatal error: Cannot redeclare xfieldsdatasave() (previously declared in /var/root/data/www/site.ru/engine/cache/system/plugins/b4533a126d40d4472595c510b230f3e5.php:207) in /var/root/data/www/site.ru/engine/alloha/func.php on line 207
Код:
if (!function_exists('xfieldsdatasave')) {
function xfieldsdatasave($xfields) {
$filecontents = [];
foreach ($xfields as $xfielddataname => $xfielddatavalue) {
if ($xfielddatavalue === '') continue;
$xfielddataname = str_replace( "|", "|", $xfielddataname);
$xfielddataname = str_replace( "\r\n", "__NEWL__", $xfielddataname);
$xfielddatavalue = str_replace( "|", "|", $xfielddatavalue);
$xfielddatavalue = str_replace( "\r\n", "__NEWL__", $xfielddatavalue);
$filecontents[] = "$xfielddataname|$xfielddatavalue";
}
$filecontents = join('||', $filecontents );
return $filecontents;
}
}

