From 74f5d0a7054baf9f573dc82152039f1caae28abb Mon Sep 17 00:00:00 2001 From: celestora Date: Thu, 4 Aug 2022 21:42:30 +0300 Subject: [PATCH] Don't truncate group names Now long group names are allowed (VK pre-2012 std) --- Web/Models/Entities/Club.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Web/Models/Entities/Club.php b/Web/Models/Entities/Club.php index ffe81ab4..a5a3027b 100644 --- a/Web/Models/Entities/Club.php +++ b/Web/Models/Entities/Club.php @@ -67,7 +67,7 @@ class Club extends RowModel function getName(): string { - return ovk_proc_strtr($this->getRecord()->name, 32); + return $this->getRecord()->name; } function getCanonicalName(): string