diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-08-10 11:09:09 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-08-10 11:09:09 -0300 |
commit | 42c7b5532fad6ca9a634360d574dee777787800c (patch) | |
tree | 82345dfc58aa403bb783a89ba322ae825d74b6c1 /usr | |
parent | 9312cca28f9e5e8c991c21c8c4fa3998ad04fc7b (diff) | |
download | pfsense-42c7b5532fad6ca9a634360d574dee777787800c.zip pfsense-42c7b5532fad6ca9a634360d574dee777787800c.tar.gz |
Fixing gettext calls on system_advanced_admin.php
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/system_advanced_admin.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/system_advanced_admin.php b/usr/local/www/system_advanced_admin.php index 12d7c9e..e0e69a2 100644 --- a/usr/local/www/system_advanced_admin.php +++ b/usr/local/www/system_advanced_admin.php @@ -262,10 +262,10 @@ function prot_change() { $https_disabled = "disabled"; ?> <input name="webguiproto" id="http_proto" type="radio" value="http" <?=$http_chk;?> onClick="prot_change()"> - HTTP + <?=gettext("HTTP"); ?> <input name="webguiproto" id="https_proto" type="radio" value="https" <?=$https_chk;?> <?=$https_disabled;?> onClick="prot_change()"> - HTTPS + <?=gettext("HTTPS"); ?> <?php if (!$certs_available): ?> <br/> <?=gettext("No Certificates have been defined. You must"); ?> @@ -469,4 +469,4 @@ if ($restart_webgui) { touch("{$g['tmp_path']}/restart_webgui"); } -?>
\ No newline at end of file +?> |