diff options
author | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:32:45 -0300 |
---|---|---|
committer | Vinicius Coque <vinicius.coque@bluepex.com> | 2010-07-10 13:32:45 -0300 |
commit | 6b1bac0a8510f2d98e36fdbda594fbb344769748 (patch) | |
tree | c99b03b3eacaee40fabb51ebef49888264a158fa /usr/local/www/interfaces_ppps.php | |
parent | 4cc39547079e1e3b9c569bf7b40d7cc3e8f4796c (diff) | |
download | pfsense-6b1bac0a8510f2d98e36fdbda594fbb344769748.zip pfsense-6b1bac0a8510f2d98e36fdbda594fbb344769748.tar.gz |
Fix gettext implementation on interfaces_ppps.php
Diffstat (limited to 'usr/local/www/interfaces_ppps.php')
-rw-r--r-- | usr/local/www/interfaces_ppps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces_ppps.php b/usr/local/www/interfaces_ppps.php index 28a02d4..2bad028 100644 --- a/usr/local/www/interfaces_ppps.php +++ b/usr/local/www/interfaces_ppps.php @@ -125,7 +125,7 @@ include("head.inc"); <?=htmlspecialchars($ppp['descr']);?> </td> <td valign="middle" nowrap class="list"> <a href="interfaces_ppps_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a> - <a href="interfaces_ppps.php?act=del&id=<?=$i;?>" onclick="return confirm(<?=gettext("Do you really want to delete this PPP interface?");?>)"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td> + <a href="interfaces_ppps.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this PPP interface?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td> </tr> <?php $i++; endforeach; ?> <tr> |