From 12d21ce4bd8bac1b323669b9d80418676f1c81c5 Mon Sep 17 00:00:00 2001 From: Andrew Longosz Date: Thu, 12 Dec 2024 16:21:12 +0100 Subject: [PATCH] Changed infinity to tilde in CopySubtreeCommand MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Dawid Parafiński --- src/bundle/Core/Command/CopySubtreeCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bundle/Core/Command/CopySubtreeCommand.php b/src/bundle/Core/Command/CopySubtreeCommand.php index bd4b809b5a..c4f6a61f82 100644 --- a/src/bundle/Core/Command/CopySubtreeCommand.php +++ b/src/bundle/Core/Command/CopySubtreeCommand.php @@ -173,6 +173,6 @@ protected function getAllChildrenCountExpr(Location $location): string $totalCount = $this->searchService->findLocations($query)->totalCount; - return $totalCount !== null ? (string) $totalCount : '∞'; + return $totalCount !== null ? (string) $totalCount : '~'; } }