Revision c53220ef
Added by Erik Fonnesbeck almost 15 years ago
usr/local/www/vpn_pptp_users.php | ||
---|---|---|
115 | 115 |
<?=htmlspecialchars($secretent['ip']);?> |
116 | 116 |
</td> |
117 | 117 |
<td class="list" nowrap> <a href="vpn_pptp_users_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" title="<?=gettext("edit user");?>" width="17" height="17" border="0"></a> |
118 |
<a href="vpn_pptp_users.php?act=del&id=<?=$i;?>" onclick="return confirm(<?=gettext('Do you really want to delete this user?');?>)"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" title="<?=gettext("delete user");?>" width="17" height="17" border="0"></a></td>
|
|
118 |
<a href="vpn_pptp_users.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this user?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" title="<?=gettext("delete user");?>" width="17" height="17" border="0"></a></td>
|
|
119 | 119 |
</tr> |
120 | 120 |
<?php $i++; endforeach; ?> |
121 | 121 |
<tr> |
Also available in: Unified diff
Add quotes back that were incorrectly removed when implementing gettext and add php tags around gettext where needed.