Skip to content

Commit bcd0994

Browse files
authored
Merge pull request #1314 from equalizedigital/william/pro-487-when-pro-is-active-the-scan-speed-setting-doesnt-update
Fix selected scan speed option value being reflected
2 parents 35faecf + f4aa36a commit bcd0994

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

includes/options-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ function edac_full_site_scan_speed_cb() {
413413
<?php foreach ( $speed_values as $value => $label ) : ?>
414414
<option
415415
value="<?php echo esc_attr( $value ); ?>"
416-
<?php selected( $full_site_scan_speed, (int) $value, false ); ?>
416+
<?php selected( $full_site_scan_speed, (int) $value ); ?>
417417
>
418418
<?php echo esc_html( $label ); ?>
419419
</option>

0 commit comments

Comments
 (0)