Skip to content
Next
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
296
Merge Requests
40
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Commits
35c8d733
Commit
35c8d733
authored
47 minutes ago
by
Mark Harding
1
Browse files
Options
Download
(fix): ensure comment export is sanitized
parent
b488b5f3
master
No related merge requests found
Pipeline
#94582770
passed with stages
in 14 minutes
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
Core/Comments/Comment.php
View file @
35c8d733
...
...
@@ -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
;
}
}
This diff is collapsed.
Please
register
or
sign in
to comment