forward port non-numeric slider form field fix

This commit is contained in:
Colin Kuskie 2008-11-22 05:54:50 +00:00
parent 05bb43852d
commit 146fe3fecd
2 changed files with 2 additions and 1 deletions

View file

@ -48,6 +48,7 @@
- fixed #4186: search results (macro not expanded in the synopsis field)
- fixed #4191: Using 3 consecutive tildes in a Post title makes a bad URL/Pos
- fixed #8927: Collaboration System: Thread approval workflow setting ignore
- fixed #8827: Slider JS bug for non-numeric values (Patrick Donelan, SDH Consulting)
7.6.3
- improved performance of file uploads

View file

@ -325,7 +325,7 @@ sub toHtml {
$slider.setMaximum(|.$self->getSliderMaximum.qq|);
$slider.setMinimum(|.$self->getSliderMinimum.qq|);
$slider.setValue(|.$self->getSliderValue.qq|);
$slider.setValue("|.$self->getSliderValue.qq|");
$slider.onchange = function () {|.
$self->getOnChangeSlider.qq|;