mirror of
https://github.com/unraid/webgui.git
synced 2026-05-03 00:09:27 -05:00
Change to be enabled rather than disabled.
This commit is contained in:
@@ -1606,8 +1606,8 @@ Image will be scaled to 1920x90 pixels. The maximum image file upload size is 51
|
||||
:display_temperature_unit_help:
|
||||
Selects the temperature unit for the disk temperature thresholds. Changing the unit will adjust the existing value in the disk temperature thresholds as appropriate.
|
||||
|
||||
:display_favorites_disabled_help:
|
||||
Sets favorites adding to disabled. Stops heart icon showing. favorties tab and pre-saved options will still continue to function.
|
||||
:display_favorites_enabled_help:
|
||||
Enables favorite support. If set to no, will stop heart icon showing for additions. If existing favorites are saved, favorites tab and pre-saved options will still continue to show and function until all are deleted.
|
||||
|
||||
Make sure any newly entered values represent the selected temperature unit.
|
||||
:end
|
||||
|
||||
@@ -315,13 +315,13 @@ _(Show banner background color fade)_:
|
||||
</select>
|
||||
</div>
|
||||
|
||||
_(Favorites disabled)_:
|
||||
_(Favorites enabled)_:
|
||||
: <select name="favorites">
|
||||
<?=mk_option($display['favorites'], "no",_('No'))?>
|
||||
<?=mk_option($display['favorites'], "yes",_('Yes'))?>
|
||||
<?=mk_option($display['favorites'], "no",_('No'))?>
|
||||
</select>
|
||||
|
||||
:display_favorites_disabled_help:
|
||||
:display_favorites_enabled_help:
|
||||
|
||||
<input type="submit" name="#default" value="_(Default)_" onclick="filename='reset'">
|
||||
: <input type="submit" name="#apply" value="_(Apply)_" disabled><input type="button" value="_(Done)_" onclick="done()">
|
||||
|
||||
@@ -7,7 +7,7 @@ Code="e924"
|
||||
if (!isset($display['favorites'])) {
|
||||
$favorites = true;
|
||||
} else {
|
||||
$favorites = $display['favorites'] == "no" ? true : false;
|
||||
$favorites = $display['favorites'] == "yes" ? true : false;
|
||||
}
|
||||
?>
|
||||
<script>
|
||||
|
||||
@@ -7,7 +7,7 @@ Code="e909"
|
||||
if (!isset($display['favorites'])) {
|
||||
$favorites = true;
|
||||
} else {
|
||||
$favorites = $display['favorites'] == "no" ? true : false;
|
||||
$favorites = $display['favorites'] == "yes" ? true : false;
|
||||
}
|
||||
?>
|
||||
<script>
|
||||
|
||||
Reference in New Issue
Block a user