Skip to content

Commit

Permalink
Merge pull request #15 from flashover/patch-1
Browse files Browse the repository at this point in the history
Added: extra htmlentities()
  • Loading branch information
ericlbarnes committed Dec 7, 2011
2 parents 3c9b481 + 51859fb commit d3fea50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/simpletest/extensions/my_reporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function paintPass($message)
<div class="result">PASSED</div>
<h3>'.$test.'</h3>
<div class="details">
<em>'.$message.'</em>
<em>'.$this->_htmlEntities($message).'</em>
</div>
</div>
';
Expand All @@ -211,7 +211,7 @@ function paintFail($message)
<div class="result">FAILED</div>
<h3>'.$test.'</h3>
<div class="details">
<em>'.$message.'</em>
<em>'.$this->_htmlEntities($message).'</em>
</div>
</div>
';
Expand Down

0 comments on commit d3fea50

Please sign in to comment.