Исправление бага с русскими никами в модуле Online 5.0
При переходе к профилю в модуле Online 5.0 существует баг с русскими никами когда пишет, что профиль не найден. Все дело в urlencode.
Исправление:
Открыть файл engine/classes/online.class.php и найти:
$profile_url = $this->config['http_home_url']."user/".$this->user_name;
Заменить на:
$profile_url = $this->config['http_home_url']."user/".urlencode($this->user_name);
Найти:
$profile_url = $this->config['http_home_url']."index.php?subaction=userinfo&user=".$this->user_name;
Заменить на:
$profile_url = $this->config['http_home_url']."index.php?subaction=userinfo&user=".urlencode($this->user_name);