Skip to content

Commit

Permalink
Merge pull request #44 from magento-mpi/MAGETWO-44566
Browse files Browse the repository at this point in the history
[MPI] Bugfix
  • Loading branch information
Tymchynskyi, Viktor(vtymchynskyi) committed Oct 25, 2015
2 parents 5d9f8b3 + d31c006 commit 02e0378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/Magento/Framework/Xml/Security.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Security
*/
private function heuristicScan($xmlContent)
{
return strpos($xmlContent, '<!ENTITY') !== false;
return strpos($xmlContent, '<!ENTITY') === false;
}

/**
Expand Down

0 comments on commit 02e0378

Please sign in to comment.