Commit a48cbde4 authored by Franco Fichtner's avatar Franco Fichtner

system: fix CRL certificate count; closes #1458

(cherry picked from commit 2058b1cf)
parent 80af89a0
...@@ -648,7 +648,7 @@ include("head.inc"); ...@@ -648,7 +648,7 @@ include("head.inc");
<tr> <tr>
<td><?=htmlspecialchars($tmpcrl['descr']); ?></td> <td><?=htmlspecialchars($tmpcrl['descr']); ?></td>
<td><?=$internal ? gettext("YES") : gettext("NO"); ?></td> <td><?=$internal ? gettext("YES") : gettext("NO"); ?></td>
<td><?=$internal ? (isset($tmpcrl['cert']) && count($tmpcrl['cert'])) : gettext("Unknown (imported)"); ?></td> <td><?=$internal ? (isset($tmpcrl['cert']) ? count($tmpcrl['cert']) : 0) : gettext("Unknown (imported)"); ?></td>
<td><?=$inuse ? gettext("YES") : gettext("NO"); ?></td> <td><?=$inuse ? gettext("YES") : gettext("NO"); ?></td>
<td> <td>
<a href="system_crlmanager.php?act=exp&amp;id=<?=$tmpcrl['refid'];?>" class="btn btn-default btn-xs"> <a href="system_crlmanager.php?act=exp&amp;id=<?=$tmpcrl['refid'];?>" class="btn btn-default btn-xs">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment