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

@ -7,6 +7,9 @@
- fixed #10528: Thingy css error
- fixed: Performance improvements with getting the list of asset packages.
- fixed: Performance improvements with getting the list of content prototypes.
- fixed bug in Thingy where the style template would not be processed after
editing a Thing and the 'return after edit' setting was set to 'Thing
Default' ( Martin Kamerbeek / Oqapi )
7.7.10
- Made a change to LDAP auth that adds an OR to that query so that it also searches for a row with fieldData REGEXP '^uid=(value-from-ldap-directory-server),'. (Wes Morgan)

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();
}
}