- fixed a bug in the File asset that caused file redirects to be cached

incorrectly for Visitor. Thanks to Jukka Raimovaara / Axxion Oy.
This commit is contained in:
Matthew Wilson 2006-03-16 17:22:31 +00:00
parent ccfbca55e0
commit 2384bca6ba
2 changed files with 3 additions and 1 deletions

View file

@ -78,6 +78,8 @@
- [ 1441488 ] Sort Order of Profile Fields in Form "Create New Account"
- fix [ 1439352 ] Deleting post is chain of posts ... descendants
- fix [ 1432491 ] 6.8.6 popup windows has not head & body tags
- fixed a bug in the File asset that caused file redirects to be cached
incorrectly for Visitor. Thanks to Jukka Raimovaara / Axxion Oy.
6.8.7
- fix [ 1431098 ] op=becomeUser can become non-existent userIds

View file

@ -330,7 +330,7 @@ sub www_view {
return $self->getContainer->www_view;
}
$self->session->http->setRedirect($self->getFileUrl);
return undef;
return '1';
}