Skip to content

Commit f75d17c

Browse files
Merge branch '4.4' into 5.4
* 4.4: [HttpKernel] Fix test sensitivity on xdebug.file_link_format [HttpKernel] Fix non-scalar check in surrogate fragment renderer [Debug][ErrorHandler] fix operator precedence [Security] Allow redirect after login to absolute URLs
2 parents 076fefa + be73165 commit f75d17c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ErrorHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ public function screamAt(int $levels, bool $replace = false): int
380380
*/
381381
private function reRegister(int $prev): void
382382
{
383-
if ($prev !== $this->thrownErrors | $this->loggedErrors) {
383+
if ($prev !== ($this->thrownErrors | $this->loggedErrors)) {
384384
$handler = set_error_handler('is_int');
385385
$handler = \is_array($handler) ? $handler[0] : null;
386386
restore_error_handler();

0 commit comments

Comments
 (0)