certmanager: Avoid double encoding cert name (#3340)

This commit is contained in:
Indrajit Raychaudhuri 2019-03-16 03:37:24 -05:00 committed by Ad Schellevis
parent a0f55d4529
commit f9d5f415e4

View File

@ -1942,7 +1942,7 @@ $( document ).ready(function() {
<?php
$i = 0;
foreach ($a_cert as $cert) :
$name = htmlspecialchars($cert['descr']);
$name = $cert['descr'];
$purpose = null;
if (!empty($cert['crt'])) {