mirror of
https://github.com/openvk/openvk
synced 2024-11-11 01:19:53 +03:00
Don't truncate group names
Now long group names are allowed (VK pre-2012 std)
This commit is contained in:
parent
cb902b7768
commit
74f5d0a705
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue