Skip to content

Commit

Permalink
fix EVO()->sendRedirect()
Browse files Browse the repository at this point in the history
  • Loading branch information
yama committed Jan 22, 2023
1 parent de6f6ea commit 84a7faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manager/includes/document.parser.class.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ public function sendRedirect($url, $count_attempts = false, $type = 'REDIRECT_HE
}
$url .= sprintf(
'%serr=%s',
strpos($url, '?') > 0 ? '?' : '&',
strpos($url, '?') !==false ? '&' : '?',
($currentNumberOfRedirects + 1)
);
}
Expand Down

0 comments on commit 84a7faf

Please sign in to comment.