fixed a login bug
This commit is contained in:
parent
3de1e05684
commit
4e688ac616
2 changed files with 3 additions and 1 deletions
|
|
@ -6,6 +6,8 @@
|
||||||
- Bugfix [ 847198 ] no final newline when data form errors display
|
- Bugfix [ 847198 ] no final newline when data form errors display
|
||||||
- Bugfix [ 699010 ] Need Approval option to Discussions like in USS
|
- Bugfix [ 699010 ] Need Approval option to Discussions like in USS
|
||||||
- Bugfix [ 847808 ] Signature not displayed in forum
|
- 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
|
5.5.2
|
||||||
|
|
|
||||||
|
|
@ -408,7 +408,7 @@ sub noAccess {
|
||||||
}
|
}
|
||||||
my ($output);
|
my ($output);
|
||||||
if ($session{user}{userId} <= 1) {
|
if ($session{user}{userId} <= 1) {
|
||||||
$output = WebGUI::Operation::Account::www_displayAccount();
|
$output = WebGUI::Operation::Account::www_displayLogin();
|
||||||
} else {
|
} else {
|
||||||
$output = '<h1>'.WebGUI::International::get(37).'</h1>';
|
$output = '<h1>'.WebGUI::International::get(37).'</h1>';
|
||||||
$output .= WebGUI::International::get(39);
|
$output .= WebGUI::International::get(39);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue