diff options
author | heper <heper@users.noreply.github.com> | 2015-10-31 00:15:24 +0100 |
---|---|---|
committer | heper <heper@users.noreply.github.com> | 2015-10-31 00:15:24 +0100 |
commit | 510ff9185e18a694dd826be9ce325768fb94636b (patch) | |
tree | a9d247c40d86294c71548d4959fa0d4f1b0dbe2a | |
parent | 29762ff2240134a56c48f45e6e203322236ac247 (diff) | |
download | pfsense-510ff9185e18a694dd826be9ce325768fb94636b.zip pfsense-510ff9185e18a694dd826be9ce325768fb94636b.tar.gz |
convert services_captiveportal_hostname to fa
-rw-r--r-- | src/usr/local/www/services_captiveportal_hostname.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/services_captiveportal_hostname.php b/src/usr/local/www/services_captiveportal_hostname.php index 9906077..2a69fbf 100644 --- a/src/usr/local/www/services_captiveportal_hostname.php +++ b/src/usr/local/www/services_captiveportal_hostname.php @@ -167,8 +167,8 @@ foreach ($a_cp[$cpzone]['allowedhostname'] as $ip): ?> <?=htmlspecialchars($ip['descr'])?> </td> <td> - <a href="services_captiveportal_hostname_edit.php?zone=<?=$cpzone?>&id=<?=$i?>" class="btn btn-xs btn-info">Edit</a> - <a href="services_captiveportal_hostname.php?zone=<?=$cpzone?>&act=del&id=<?=$i?>" class="btn btn-xs btn-danger">Delete</a> + <a class="fa fa-pencil" title="<?=gettext("Edit hostname"); ?>" href="services_captiveportal_hostname_edit.php?zone=<?=$cpzone?>&id=<?=$i?>"></a> + <a class="fa fa-trash" title="<?=gettext("Delete hostname")?>" href="services_captiveportal_hostname.php?zone=<?=$cpzone?>&act=del&id=<?=$i?>" onclick="return confirm('<?=gettext("Are you sure you want to delete this hostname?")?>')"></a> </td> </tr> <?php @@ -194,4 +194,4 @@ endif; <?php print_info_box($notestr); -include("foot.inc");
\ No newline at end of file +include("foot.inc"); |