diff options
author | Vinicius Coque <vcoque@gmail.com> | 2012-11-17 14:52:06 -0200 |
---|---|---|
committer | Vinicius Coque <vcoque@gmail.com> | 2012-11-17 14:52:06 -0200 |
commit | 529718808b8eb9f4ee92db07cb7313cd0d4bc877 (patch) | |
tree | 7e666971c0965b372fbc62e8c838a089997107e4 | |
parent | 67179472fc4d721d02baa8741d00ede472b57d0d (diff) | |
download | pfsense-529718808b8eb9f4ee92db07cb7313cd0d4bc877.zip pfsense-529718808b8eb9f4ee92db07cb7313cd0d4bc877.tar.gz |
Removing unnecessary gettext function calls
-rwxr-xr-x | usr/local/www/system_firmware_restorefullbackup.php | 4 | ||||
-rw-r--r-- | usr/local/www/vpn_openvpn_server.php | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/usr/local/www/system_firmware_restorefullbackup.php b/usr/local/www/system_firmware_restorefullbackup.php index 03928aa..2c15c9a 100755 --- a/usr/local/www/system_firmware_restorefullbackup.php +++ b/usr/local/www/system_firmware_restorefullbackup.php @@ -139,7 +139,7 @@ include("head.inc"); <td colspan="1" class="listtopic"><?=gettext("Filename"); ?></td> <td colspan="1" class="listtopic"><?=gettext("Date"); ?></td> <td colspan="1" class="listtopic"><?=gettext("Size"); ?></td> - <td colspan="1" class="listtopic"><?=gettext(""); ?></td> + <td colspan="1" class="listtopic"></td> </tr> <?php chdir("/root"); @@ -206,4 +206,4 @@ decrypt_change(); if (is_subsystem_dirty('restore')) system_reboot(); -?>
\ No newline at end of file +?> diff --git a/usr/local/www/vpn_openvpn_server.php b/usr/local/www/vpn_openvpn_server.php index 7971478..004ce56 100644 --- a/usr/local/www/vpn_openvpn_server.php +++ b/usr/local/www/vpn_openvpn_server.php @@ -1175,7 +1175,6 @@ if ($savemsg) <td width="78%" class="vtable"> <input name="serverbridge_dhcp_end" type="text" class="formfld unknown" size="20" value="<?=htmlspecialchars($pconfig['serverbridge_dhcp_end']);?>"> <br> - <?=gettext(""); ?> </td> </tr> <tr id="gwredir_opts"> @@ -1719,4 +1718,4 @@ function set_checked($var,& $chk) { $chk = ''; } -?>
\ No newline at end of file +?> |