From 032d85c12dfabcadc00ef4d013fb03d371245e13 Mon Sep 17 00:00:00 2001 From: Yung Han Khoe Date: Fri, 2 May 2008 17:20:20 +0000 Subject: [PATCH] fix: Thingy: edit thing doesn't show any saved properties --- lib/WebGUI/Asset/Wobject/Thingy.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Asset/Wobject/Thingy.pm b/lib/WebGUI/Asset/Wobject/Thingy.pm index cc18c836b..d3046b7f9 100644 --- a/lib/WebGUI/Asset/Wobject/Thingy.pm +++ b/lib/WebGUI/Asset/Wobject/Thingy.pm @@ -1221,7 +1221,7 @@ sub www_editThing { $thingId = $self->addThing(\%properties,0); } else{ - %properties = $self->getThing($thingId); + %properties = %{$self->getThing($thingId)}; } $tabForm = WebGUI::TabForm->new($self->session, undef, undef, $self->getUrl('func=view'));