fixed a bug in Thingy where in some cases the style template was not processed after editing a Thing.

This commit is contained in:
Martin Kamerbeek 2009-06-17 12:23:06 +00:00
parent e44c7bae2e
commit 65bdea5f3c
2 changed files with 5 additions and 2 deletions

View file

@ -2560,9 +2560,9 @@ sub www_editThingDataSave {
$otherThingId =~ s/^addOther_//x;
return $self->www_editThingData($otherThingId,"new");
}
# if afterSave is thingy default or in any other case return view()
# if afterSave is thingy default or in any other case return www_view()
else {
return $self->view();
return $self->www_view();
}
}