Bad value at search form
-
Hello,
I find this problem.
In function ‘hb_dropdown_numbers’ is wrong value.
File: wphb-functions.phpnow
$output .= sprintf( '<option value="%1$d"%2$s>%3$d</option>', $option['value'], $selected == $option['value'] ? ' selected="selected"' : '', $option['text'] );
value="%1$d"
repair
$output .= sprintf( '<option value="%3$d"%2$s>%3$d</option>', $option['value'], $selected == $option['value'] ? ' selected="selected"' : '', $option['text'] );
value="%3$d"
Jan
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Bad value at search form’ is closed to new replies.