HOR-282 Adds XSS filtering to changeStatus.

This commit is contained in:
Chloe Deguzman
2016-03-08 01:47:53 +00:00
parent cddb3eeba1
commit dbbdd7c0db

View File

@@ -118,7 +118,7 @@ class ProcessProxy extends HttpProxyController
$oProcess = new Processes();
if (count( $ids ) > 0) {
foreach ($ids as $id) {
$oProcess->changeStatus( $id );
$oProcess->changeStatus( htmlspecialchars($id) );
}
}
}