Skip to content

Commit d721816

Browse files
committedSep 8, 2011
Fix a problem with case sensitivity when in Thingy's getFieldValue. Fixes bug #12231.
1 parent 622391b commit d721816

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎docs/changelog/7.x.x.txt

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
- fixed #12240: Empty Extend Calendar Recurrance version tags
99
- fixed #12241: Account Shop
1010
- fixed #12246: Layout inherits mobileStyleTemplateId and mobileTemplateId from parent Layouts
11+
- fixed #12246: added extra_www_add_properties as properties fix-up hook in child for www_add
12+
- fixed #12231: Thingy reindex fails on upgrade
1113

1214
7.10.22
1315
- rfe #12223: Add date type to content profiling (metadata)

‎lib/WebGUI/Asset/Wobject/Thingy.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ sub getFieldValue {
10611061
# TODO: The otherThing field type is probably also handled by getFormPlugin, so the elsif below can probably be
10621062
# safely removed. However, this requires more testing than I can provide right now, so for now this stays the
10631063
# way it was.
1064-
elsif ($field->{fieldType} =~ m/^otherthing/x) {
1064+
elsif ($fieldType =~ m/^otherthing/x) {
10651065
my $otherThingId = $field->{fieldType};
10661066
$otherThingId =~ s/^otherThing_//x;
10671067
my $tableName = 'Thingy_'.$otherThingId;

0 commit comments

Comments
 (0)