Skip to content

Commit

Permalink
Issue RotherOSS#55: Fix PATH_INFO.
Browse files Browse the repository at this point in the history
The DBViewer is now at /otobo/dbviewer instead of /dbviewer.
  • Loading branch information
bschmalhofer committed Jun 2, 2020
1 parent d9411d6 commit c70987f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/psgi-bin/otobo.psgi
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ my $DBViewerApp = builder {
enable 'Rewrite', request => sub {
$_ ||= '/dbviewer/';
$_ = '/dbviewer/' if $_ eq '/';
$_ = '/dbviewer' . $_;
$_ = '/otobo/dbviewer' . $_;

1;
};
Expand Down

0 comments on commit c70987f

Please sign in to comment.