Skip to content

Commit

Permalink
Resolve #1703
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Aug 12, 2024
1 parent d87c46f commit 3ba75fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions snappymail/v/0.0.0/app/libraries/RainLoop/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,12 @@ private static function RunResult() : bool
}

$sQuery = \trim($_SERVER['QUERY_STRING'] ?? '');
/*
https://github.com/the-djmaze/snappymail/commit/47d18cafa38dd526b4221c2a72d1529e4fa1d255#r144395031
if (!empty($_SERVER['PATH_INFO'])) {
$sQuery = \ltrim($_SERVER['PATH_INFO'],'/') . '&' . $sQuery;
}
*/
$iPos = \strpos($sQuery, '&');
if (0 < $iPos) {
$sQuery = \substr($sQuery, 0, $iPos);
Expand Down

0 comments on commit 3ba75fe

Please sign in to comment.