diff --git a/docs/changelog/5.x.x.txt b/docs/changelog/5.x.x.txt index 901b2127d..44053dd7f 100644 --- a/docs/changelog/5.x.x.txt +++ b/docs/changelog/5.x.x.txt @@ -6,6 +6,8 @@ - Bugfix [ 847198 ] no final newline when data form errors display - Bugfix [ 699010 ] Need Approval option to Discussions like in USS - Bugfix [ 847808 ] Signature not displayed in forum + - Fixed a bug where users would only be directed to the page they were on + after login, and not to a deeper location with URL parameters. 5.5.2 diff --git a/lib/WebGUI/Privilege.pm b/lib/WebGUI/Privilege.pm index 4c72f0826..7769eeae3 100644 --- a/lib/WebGUI/Privilege.pm +++ b/lib/WebGUI/Privilege.pm @@ -408,7 +408,7 @@ sub noAccess { } my ($output); if ($session{user}{userId} <= 1) { - $output = WebGUI::Operation::Account::www_displayAccount(); + $output = WebGUI::Operation::Account::www_displayLogin(); } else { $output = '

'.WebGUI::International::get(37).'

'; $output .= WebGUI::International::get(39);