diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 30a36ce60..a6fdae070 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.10.3 + - fixed #11903: Unnecessary debug in Thingy 7.10.2 - fixed #11884: Editing Templates impossible / Code editor not loaded diff --git a/lib/WebGUI/Asset/Wobject/Thingy.pm b/lib/WebGUI/Asset/Wobject/Thingy.pm index d530fe5d3..2f6fecd7a 100644 --- a/lib/WebGUI/Asset/Wobject/Thingy.pm +++ b/lib/WebGUI/Asset/Wobject/Thingy.pm @@ -446,8 +446,6 @@ sub copyThingData { return undef unless $self->canEditThingData($thingId, $thingDataId); my $origCollateral = $self->getCollateral("Thingy_".$thingId, "thingDataId", $thingDataId); - use Data::Dumper; - $session->log->warn(Dumper $origCollateral); $origCollateral->{thingDataId} = "new"; ##Get all fields my $fields = $db->buildArrayRefOfHashRefs('select * from Thingy_fields where assetId=? and thingId=?' @@ -2646,9 +2644,6 @@ sub www_editThingDataSaveViaAjax { } my $thingProperties = $self->getThing($thingId); - use Data::Dumper; - warn $thingId; - warn Dumper $thingProperties; if ($thingProperties->{thingId}){ return $session->privilege->insufficient() unless $self->canEditThingData($thingId, $thingDataId ,$thingProperties);