Skip to content

Commit

Permalink
Merge pull request #3073 from catchpoint/remove_disable_jpeg_xl
Browse files Browse the repository at this point in the history
Removed  "Disable JPEG XL image support"  option
  • Loading branch information
claud-io authored Jul 15, 2024
2 parents 50f5b6e + 0dbb450 commit b7d6765
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
6 changes: 0 additions & 6 deletions www/home.php
Original file line number Diff line number Diff line change
Expand Up @@ -638,12 +638,6 @@ function enableDisableLHSimple(){
<small>Firefox and Chromium-based browsers only</small>
</label>
</li>
<li>
<input type="checkbox" name="disableJXL" id="disableJXL" class="checkbox" style="float: left;width: auto;">
<label for="disableJXL" class="auto_width">Disable JPEG XL image support<br />
<small>Firefox and Chromium-based browsers only</small>
</label>
</li>
<?php if (GetSetting('fullSizeVideoOn')) { ?>
<li>
<label for="full_size_video" class="auto_width">
Expand Down
4 changes: 0 additions & 4 deletions www/runtest.php
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,6 @@
$test['debug'] = isset($_REQUEST['debug']) && $_REQUEST['debug'] ? 1 : 0;
$test['disableAVIF'] = isset($_REQUEST['disableAVIF']) && $_REQUEST['disableAVIF'] ? 1 : 0;
$test['disableWEBP'] = isset($_REQUEST['disableWEBP']) && $_REQUEST['disableWEBP'] ? 1 : 0;
$test['disableJXL'] = isset($_REQUEST['disableJXL']) && $_REQUEST['disableJXL'] ? 1 : 0;
$test['dtShaper'] = isset($_REQUEST['dtShaper']) && $_REQUEST['dtShaper'] ? 1 : 0;
$test['axe'] = isset($_REQUEST['axe']) && $_REQUEST['axe'] ? 1 : 0;
if (isset($_REQUEST['warmup']) && $_REQUEST['warmup'] > 0) {
Expand Down Expand Up @@ -3028,9 +3027,6 @@ function CreateTest(&$test, $url, $batch = 0, $batch_locations = 0)
if (isset($test['disableWEBP']) && $test['disableWEBP']) {
$job['disableWEBP'] = 1;
}
if (isset($test['disableJXL']) && $test['disableJXL']) {
$job['disableJXL'] = 1;
}
if (isset($test['dtShaper']) && $test['dtShaper']) {
$job['dtShaper'] = 1;
}
Expand Down

0 comments on commit b7d6765

Please sign in to comment.