Прочитал статью пользователя HooLIGUN, и поковырялся в файле FurlTemplates.php, получилось сделать ссылки на форумы вида site.ru/forum/X/
Делаем так:
Открываем файл
/admin/applications/forum/extensions/furlTemplates.php
Находим:
'showforum' => array( 'app' => 'forums',
'allowRedirect' => 1,
'isPagesMode' => 1,
'out' => array( '#showforum=(.+?)(&|$)#i', 'forum/$1-#{__title__}/$2' ),
'in' => array( 'regex' => '#^/forum/(\d+?)(?:-|/|$)#i',
'matches' => array( array( 'showforum', '$1' ) ) ) ),
Удаляем -#{__title__}
Т.е должно получится:
'showforum' => array( 'app' => 'forums',
'allowRedirect' => 1,
'isPagesMode' => 1,
'out' => array( '#showforum=(.+?)(&|$)#i', 'forum/$1/$2' ),
'in' => array( 'regex' => '#^/forum/(\d+?)(?:-|/|$)#i',
'matches' => array( array( 'showforum', '$1' ) ) ) ),
Думаю кому-нибудь пригодиться
Recommended Comments
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.