fixed: anonymous registration leaves user at blank page

This commit is contained in:
Graham Knop 2008-04-08 22:04:00 +00:00
parent 539957df52
commit bdcf6eb4bc
2 changed files with 4 additions and 2 deletions

View file

@ -9,6 +9,7 @@
- fixed: EMail field rejects some valid email addresses - fixed: EMail field rejects some valid email addresses
- fixed: Calendar date localization can be broken - fixed: Calendar date localization can be broken
- fixed: Thingy: field sequence not imported correctly for existing Thingies - fixed: Thingy: field sequence not imported correctly for existing Thingies
- fixed: anonymous registration leaves user at blank page
7.5.9 7.5.9
- fixed: Collaboration System attachments follow site's max size instead of CS's - fixed: Collaboration System attachments follow site's max size instead of CS's
@ -32,7 +33,7 @@
- fixed: CS rating links are exposed to site spiders - fixed: CS rating links are exposed to site spiders
- improved behavior of CS mail message filtering - improved behavior of CS mail message filtering
- fixed: Thingy: "cancel" -- cannot cancel when adding a thing - fixed: Thingy: "cancel" -- cannot cancel when adding a thing
- fixed: unable to respond to poll multiple times in same session - fixed: unable to respond to survey multiple times in same session
- fixed: packages try to restore owner - fixed: packages try to restore owner
7.5.8 7.5.8

View file

@ -68,7 +68,8 @@ sub handler {
} }
last; last;
} }
elsif ($session->http->getStatus ne "200") { # Keep processing for success codes
elsif ($session->http->getStatus < 200 || $session->http->getStatus > 299) {
$session->http->sendHeader; $session->http->sendHeader;
last; last;
} }