Skip to content

Commit c007934

Browse files
Merge branch '6.2' into 6.3
* 6.2: fix merge [DependencyInjection] Filter "container.excluded" services when using `findTaggedServiceIds()` [Cache] Removing null coalescing assignment operator on 5.4 [Console] Add missing ZSH mention in DumpCompletionCommand help [Cache] Fix storing binary keys when using pgsql [FrameworkBundle] Add missing monolog channel tag for messenger services update documentation for telegram bridge notifier [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 7113186 + d37ab67 commit c007934

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

448448
$this->handlesHrefGracefully ??= 'JetBrains-JediTerm' !== getenv('TERMINAL_EMULATOR')
449-
&& (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100);
449+
&& (!getenv('KONSOLE_VERSION') || (int) getenv('KONSOLE_VERSION') > 201100)
450+
&& !isset($_SERVER['IDEA_INITIAL_DIRECTORY']);
450451

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

0 commit comments

Comments
 (0)