Display "Auto" when there is no discovered duplex setting

This commit is contained in:
Oliver Gorwits
2013-08-23 09:11:56 +01:00
parent 8355390fc5
commit 1c5de08f41
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2.012007 - 2013-08-23
[ENHANCEMENTS]
* Display "Auto" when there is no discovered duplex setting
2.012006 - 2013-08-23
[BUG FIXES]

View File

@@ -88,7 +88,7 @@
[% IF params.c_duplex %]
<td>
[% IF row.up == 'up' AND row.duplex %]
[% row.duplex_admin.ucfirst | html_entity %] / [% row.duplex.ucfirst | html_entity %]
[% (row.duplex_admin.ucfirst || 'Auto') | html_entity %] / [% row.duplex.ucfirst | html_entity %]
[% END %]
</td>
[% END %]