Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
Fixed: Can't use system registration with some OTRS-IDs (bug#10458).
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosfrodriguez committed May 3, 2014
1 parent 9588f70 commit 0d7d3b1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
@@ -1,4 +1,5 @@
#3.3.7 2014-??-??
- 2014-05-02 Fixed bug#[10458](http://bugs.otrs.org/show_bug.cgi?id=10458) - Can't use system registration with some OTRS-IDs.
- 2014-04-29 Fixed bug#[10470](http://bugs.otrs.org/show_bug.cgi?id=10470) - Need FormID! error when embedding image when creating a Process Ticket.
- 2014-04-28 Fixed bug#[9876](http://bugs.otrs.org/show_bug.cgi?id=9876) - CaseSensitive option wrong in CustomerCompany.
- 2014-04-17 Removed OTRS Scheduler Service startup files in favor of Watchdog mode via cron jobs.
Expand Down
6 changes: 4 additions & 2 deletions Kernel/Modules/AdminRegistration.pm
Expand Up @@ -74,8 +74,10 @@ sub Run {
if ( $Response{Token} ) {
my $NextAction = $Self->{RegistrationState} ne 'registered' ? 'Register' : 'Deregister';
return $Self->{LayoutObject}->Redirect(
OP =>
"Action=AdminRegistration;Subaction=$NextAction;Token=$Response{Token};OTRSID=$OTRSID",
OP => "Action=AdminRegistration;Subaction=$NextAction;Token="
. $Self->{LayoutObject}->LinkEncode( $Response{Token} )
. ';OTRSID='
. $Self->{LayoutObject}->LinkEncode($OTRSID),
);
}

Expand Down

0 comments on commit 0d7d3b1

Please sign in to comment.