Dan, good night.
In the Lib / entity / media.php file we have the following function:
private function moveFile($from, $to)
{
$return = copy($from, $to);
if (!@unlink($from))
$this->getLog()->error('Cannot delete file: ' . $to);
return $return;
}
My question is, should not the error log be this way?
error('Cannot delete file: ’ . $from);