Skip to content

Commit d37ab67

Browse files
Merge branch '5.4' into 6.2
* 5.4: [Cache] Removing null coalescing assignment operator on 5.4 [Cache] Fix storing binary keys when using pgsql [FrameworkBundle] Add missing monolog channel tag for messenger services [FrameworkBundle] Improve documentation about translation:extract --sort option [VarDumper] Disable links for IntelliJ platform [Notifier] Add bridge documentation [HttpClient] Add hint about `timeout` and `max_duration` options [HttpFoundation] Use separate caches for IpUtils checkIp4 and checkIp6 [FrameworkBundle] Fix wiring session.handler when handler_id is null [FrameworkBundle] Workflow - Fix LogicException about a wrong configuration of "enabled" node
2 parents 02dacf7 + e2edac9 commit d37ab67

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
@@ -421,7 +421,8 @@ protected function style(string $style, string $value, array $attr = []): string
421421
$this->colors ??= $this->supportsColors();
422422

423423
$this->handlesHrefGracefully ??= 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR')
424-
&& (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100);
424+
&& (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100)
425+
&& !isset($_SERVER['IDEA_INITIAL_DIRECTORY']);
425426

426427
if (isset($attr['ellipsis'], $attr['ellipsis-type'])) {
427428
$prefix = substr($value, 0, -$attr['ellipsis']);

0 commit comments

Comments
 (0)