Commit 35c8d733 authored by Mark Harding's avatar Mark Harding

(fix): ensure comment export is sanitized

parent b488b5f3
No related merge requests found
Pipeline #94582770 passed with stages
in 14 minutes
......@@ -9,6 +9,7 @@ use Minds\Entities\RepositoryEntity;
use Minds\Entities\User;
use Minds\Helpers\Flags;
use Minds\Helpers\Unknown;
use Minds\Helpers\Export;
use Minds\Core\Di\Di;
/**
......@@ -406,6 +407,8 @@ class Comment extends RepositoryEntity
//$output['parent_guid'] = (string) $this->entityGuid;
$output = Export::sanitize($output);
return $output;
}
}
Please register or to comment