summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/system_crlmanager.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2016-03-08 11:14:58 -0500
committerjim-p <jimp@pfsense.org>2016-03-08 11:15:20 -0500
commit15b6dcac6ae1697336a762b955cbde19d30047c4 (patch)
treed95acdfaafff20e5078b66f3e4b81435d1d05004 /src/usr/local/www/system_crlmanager.php
parent1ce9c03dc3f24f44f6d36a182f45ed0d2ad8ecfe (diff)
downloadpfsense-15b6dcac6ae1697336a762b955cbde19d30047c4.zip
pfsense-15b6dcac6ae1697336a762b955cbde19d30047c4.tar.gz
Correct some icon usage inconsistencies. Fixes #5965
Diffstat (limited to 'src/usr/local/www/system_crlmanager.php')
-rw-r--r--src/usr/local/www/system_crlmanager.php22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/usr/local/www/system_crlmanager.php b/src/usr/local/www/system_crlmanager.php
index dd9e778..e94917f 100644
--- a/src/usr/local/www/system_crlmanager.php
+++ b/src/usr/local/www/system_crlmanager.php
@@ -526,8 +526,8 @@ if ($act == "new" || $act == gettext("Save") || $input_errors) {
<?=date("D M j G:i:s T Y", $cert["revoke_time"]); ?>
</td>
<td class="list">
- <a href="system_crlmanager.php?act=delcert&amp;id=<?=$crl['refid']; ?>&amp;certref=<?=$cert['refid']; ?>" onclick="return confirm('<?=gettext("Do you really want to delete this Certificate from the CRL?")?>')">
- <i class="fa fa-times-circle" title="<?=gettext("Delete this certificate from the CRL ")?>" alt="<?=gettext("Delete this certificate from the CRL ")?>"></i>
+ <a href="system_crlmanager.php?act=delcert&amp;id=<?=$crl['refid']; ?>&amp;certref=<?=$cert['refid']; ?>">
+ <i class="fa fa-trash" title="<?=gettext("Delete this certificate from the CRL")?>" alt="<?=gettext("Delete this certificate from the CRL")?>"></i>
</a>
</td>
</tr>
@@ -645,12 +645,14 @@ if ($act == "new" || $act == gettext("Save") || $input_errors) {
if ($cainternal == "YES"):
?>
<a href="system_crlmanager.php?act=new&amp;caref=<?=$ca['refid']; ?>" class="btn btn-xs btn-success">
+ <i class="fa fa-plus icon-embed-btn"></i>
<?=gettext("Add or Import CRL")?>
</a>
<?php
else:
?>
<a href="system_crlmanager.php?act=new&amp;caref=<?=$ca['refid']; ?>&amp;importonly=yes" class="btn btn-xs btn-success">
+ <i class="fa fa-plus icon-embed-btn"></i>
<?=gettext("Add or Import CRL")?>
</a>
<?php
@@ -671,26 +673,18 @@ if ($act == "new" || $act == gettext("Save") || $input_errors) {
<td><?=($internal) ? count($tmpcrl['cert']) : "Unknown (imported)"; ?></td>
<td><?=($inuse) ? "YES" : "NO"; ?></td>
<td>
- <a href="system_crlmanager.php?act=exp&amp;id=<?=$tmpcrl['refid']?>" class="btn btn-xs btn-success">
- <?=gettext("Export CRL")?>
- </a>
+ <a href="system_crlmanager.php?act=exp&amp;id=<?=$tmpcrl['refid']?>" class="fa fa-download" title="<?=gettext("Export CRL")?>"></a>
<?php
if ($internal): ?>
- <a href="system_crlmanager.php?act=edit&amp;id=<?=$tmpcrl['refid']?>" class="btn btn-xs btn-info">
- <?=gettext("Edit CRL")?>
- </a>
+ <a href="system_crlmanager.php?act=edit&amp;id=<?=$tmpcrl['refid']?>" class="fa fa-pencil" title="<?=gettext("Edit CRL")?>"></a>
<?php
else:
?>
- <a href="system_crlmanager.php?act=editimported&amp;id=<?=$tmpcrl['refid']?>" class="btn btn-xs btn-info">
- <?=gettext("Edit CRL")?>
- </a>
+ <a href="system_crlmanager.php?act=editimported&amp;id=<?=$tmpcrl['refid']?>" class="fa fa-pencil" title="<?=gettext("Edit CRL")?>"></a>
<?php endif;
if (!$inuse):
?>
- <a href="system_crlmanager.php?act=del&amp;id=<?=$tmpcrl['refid']?>" class="btn btn-xs btn-danger">
- <?=gettext("Delete CRL")?>
- </a>
+ <a href="system_crlmanager.php?act=del&amp;id=<?=$tmpcrl['refid']?>" class="fa fa-trash" title="<?=gettext("Delete CRL")?>"></a>
<?php
endif;
?>
OpenPOWER on IntegriCloud