Skip to content

Commit 243d1bd

Browse files
committed
Merge branch '4.4' into 5.1
* 4.4: Added additional file existence check on temporary file cleanup for dumpFile method fix lexing inline sequences/mappings with trailing whitespaces Added test for issue 39229 [Console] Enable hyperlinks in Konsole/Yakuake
2 parents 006fc23 + 456ee01 commit 243d1bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dumper/CliDumper.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,8 @@ protected function style($style, $value, $attr = [])
435435
}
436436

437437
if (null === $this->handlesHrefGracefully) {
438-
$this->handlesHrefGracefully = 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR') && !getenv('KONSOLE_VERSION');
438+
$this->handlesHrefGracefully = 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR')
439+
&& (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100);
439440
}
440441

441442
if (isset($attr['ellipsis'], $attr['ellipsis-type'])) {

0 commit comments

Comments
 (0)