From bb330fd30cf59e7b7bbdba2d56112114fe8c5a2d Mon Sep 17 00:00:00 2001 From: Yung Han Khoe Date: Sat, 11 Apr 2009 17:31:33 +0000 Subject: [PATCH] fixed #10141: Matrix 2.0 - Search does not check matching products --- docs/changelog/7.x.x.txt | 1 + lib/WebGUI/Asset/Wobject/Matrix.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 14704fb0b..cbaa4660e 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -3,6 +3,7 @@ - Default Survey Question bundles now store full answer information in json. Everything configured in an answer will be saved in a default configuration. - Survey [[question variable]] now returns the shown answer text for multiple choice questions, and the recorded value for non-multiple choice questions. - fixed #10142: Matrix 2.0 - Search screen compare button not functional + - fixed #10141: Matrix 2.0 - Search does not check matching products 7.7.3 - fixed #10094: double explanation in thread help diff --git a/lib/WebGUI/Asset/Wobject/Matrix.pm b/lib/WebGUI/Asset/Wobject/Matrix.pm index 2fdc4769c..ab94c7fed 100644 --- a/lib/WebGUI/Asset/Wobject/Matrix.pm +++ b/lib/WebGUI/Asset/Wobject/Matrix.pm @@ -1302,7 +1302,7 @@ sub www_search { $options{'blank'} = 'blank'; $attribute->{options} = \%options; $attribute->{value} = 'blank'; - $attribute->{extras} = "style='width:120px'"; + $attribute->{extras} .= " style='width:120px'"; } $attribute->{form} = WebGUI::Form::DynamicField->new($self->session,%{$attribute})->toHtml; push(@attribute_loop,$attribute);