fix - WG user not logged in Apache
This commit is contained in:
parent
76af04f71b
commit
ad7e894fbc
3 changed files with 2 additions and 1 deletions
|
|
@ -16,6 +16,7 @@
|
|||
- fix: viewIndividualSurvey shows "Answer" lines in Survey mode
|
||||
- fix: Attachment label but no field in CS posts
|
||||
- fix: isInGroup now processes LDAP users correctly
|
||||
- fix: WG user not logged in Apache
|
||||
|
||||
6.99.4
|
||||
- fix: better checking of selected template type
|
||||
|
|
|
|||
|
|
@ -93,6 +93,7 @@ sub contentHandler {
|
|||
} elsif ($session->setting->get("specialState") eq "upgrading") {
|
||||
upgrading($session);
|
||||
} else {
|
||||
$r->user($session->user->username); # Tell Apache who's getting this page
|
||||
my $output = processOperations($session);
|
||||
if ($output ne "") {
|
||||
# do nothing because we have operation output to display
|
||||
|
|
|
|||
|
|
@ -587,7 +587,6 @@ sub user {
|
|||
}
|
||||
delete $self->{_stow};
|
||||
$self->{_user} = $option->{user} || WebGUI::User->new($self, $userId);
|
||||
$self->request->user($self->{_user}->username) if ($self->request);
|
||||
} elsif (!exists $self->{_user}) {
|
||||
$self->{_user} = WebGUI::User->new($self, $self->var->get('userId'));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue