summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-09-28 14:40:21 -0400
committerjim-p <jimp@pfsense.org>2011-09-28 14:40:21 -0400
commit6c1ebf813768d2f1952d729c7b43ccc22ffc96cc (patch)
tree5e0090726ad09f04bb30061c267009a5ea781504
parent240ffd2e7e748f0074d572756cd40bb272b29451 (diff)
downloadpfsense-6c1ebf813768d2f1952d729c7b43ccc22ffc96cc.zip
pfsense-6c1ebf813768d2f1952d729c7b43ccc22ffc96cc.tar.gz
Clarify text/settings for media selection. Fixes #1910
-rwxr-xr-xusr/local/www/interfaces.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr/local/www/interfaces.php b/usr/local/www/interfaces.php
index 07a959f..f85a8a5 100755
--- a/usr/local/www/interfaces.php
+++ b/usr/local/www/interfaces.php
@@ -1192,7 +1192,8 @@ $types = array("none" => gettext("None"), "static" => gettext("Static"), "dhcp"
if ($mediaopt_from_config == 'autoselect ' || $mediaopt_from_config == ' ') echo "style='display:none'>";
else echo '>';
echo '<select name="mediaopt" class="formselect" id="mediaopt">';
- print "<option value=\"\">Default</option>";
+ print "<option value=\"\">Default (no preference, typically autoselect)</option>";
+ print "<option value=\"\">------- Media Supported by this interface -------</option>";
foreach($mediaopts_list as $mediaopt){
if ($mediaopt != rtrim($mediaopt_from_config)){
print "<option value=\"$mediaopt\">" . gettext("$mediaopt") . "</option>";
@@ -1201,7 +1202,7 @@ $types = array("none" => gettext("None"), "static" => gettext("Static"), "dhcp"
}
}
echo '</select><br>';
- echo gettext("Here you can explicitly set speed and duplex mode for this interface. WARNING: You MUST leave this set to autonegotiate unless the port this interface connects to has its speed and duplex forced.");
+ echo gettext("Here you can explicitly set speed and duplex mode for this interface. WARNING: You MUST leave this set to autoselect (automatically negotiate speed) unless the port this interface connects to has its speed and duplex forced.");
echo '</div>';
echo '</td>';
echo '</tr>';
OpenPOWER on IntegriCloud