@@ -71,7 +71,7 @@ |
||
71 | 71 | $step = ( is_numeric( $this->choices['step'] ) ) ? $this->choices['step'] : intval( $this->choices['step'] ); |
72 | 72 | $valid = range( $min, $max, $step ); |
73 | 73 | foreach ( $valid as $possible_value ) { |
74 | - $smallest[ $possible_value ] = abs( $possible_value - $value ); |
|
74 | + $smallest[$possible_value] = abs( $possible_value - $value ); |
|
75 | 75 | } |
76 | 76 | asort( $smallest ); |
77 | 77 | $value = key( $smallest ); |