Skip to content

Commit e178934

Browse files
committed
Merge branch '5.1' into 5.2
* 5.1: 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 173a79c + 243d1bd commit e178934

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)