Old value can be retained, even if empty

This commit is contained in:
Robin Cornett
2016-07-02 13:07:22 -04:00
parent 7f9695e5f6
commit 8a5ba28360
@@ -501,7 +501,7 @@ class Display_Featured_Image_Genesis_Settings extends Display_Featured_Image_Gen
if ( $new_value >= $min && $new_value <= $max ) {
return (int) $new_value;
}
return (int) $old_value;
return $old_value;
}
/**