Установка:
Редактируем /engine/modules/search.phpНайти:
{$lang['s_mname']}
{$lang[‘s_fname’]} {$lang[‘s_fgname’]} |
Добавить ниже:
Открыть профиль
{$lang[‘s_fname’]} |
Найти:
if( isset( $_REQUEST['searchuser'] ) ) $searchuser = dle_substr( $_REQUEST['searchuser'], 0, 40, $config['charset'] ); else $searchuser = "";
Добавить ниже:
if( isset( $_REQUEST['userprofile'] ) ) $userprofile = dle_substr( $_REQUEST['userprofile'], 0, 40, $config['charset'] ); else $userprofile = "";
if( $userprofile ) {
header('Location: '.$config['http_home_url'].'user/'.$userprofile.'/');
die;
}