diff options
author | Benny Baumann <BenBE@geshi.org> | 2014-05-20 22:46:26 +0200 |
---|---|---|
committer | Benny Baumann <BenBE@geshi.org> | 2014-05-20 22:46:26 +0200 |
commit | 5737cf42ad75ba6415922f2a40714ac0e5ab8c6f (patch) | |
tree | 28b774ce896f9f7458cf533f94a00bf8dd6534be /pages | |
parent | 0dfce0319110924a27d013a37ed179d33e837f0c (diff) | |
download | cacert-devel-5737cf42ad75ba6415922f2a40714ac0e5ab8c6f.tar.gz cacert-devel-5737cf42ad75ba6415922f2a40714ac0e5ab8c6f.tar.xz cacert-devel-5737cf42ad75ba6415922f2a40714ac0e5ab8c6f.zip |
bug 1138: fix double-escaping in wot/10
Diffstat (limited to 'pages')
-rw-r--r-- | pages/wot/10.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/wot/10.php b/pages/wot/10.php index b0dc739..b5e146c 100644 --- a/pages/wot/10.php +++ b/pages/wot/10.php @@ -129,7 +129,7 @@ if ($thawte) <tr> <td class="DataTD"><?=intval($row['id'])?></td> <td class="DataTD"><?=$row['date']?></td> - <td class="DataTD"><?=sanitizeHTML($name)?></td> + <td class="DataTD"><?=$name?></td> <td class="DataTD"><?=intval($row['points'])?></td> <td class="DataTD"><?=sanitizeHTML($row['location'])?></td> <td class="DataTD"><?=$row['method']==""?"":_(sprintf("%s", $row['method']))?></td> |