members nickname/thumb links will open in a new window on browse/search and index page
open file inc/design.inc.php
find function get_member_thumbnail( $ID, $float, $bDrawMargin=true )
and this lines
$ret .= '<div class="thumbnail_block" style="float:' . $float . '; '.$sMarginsRCAddon.' ">';
$ret .= "<a href=\"".getProfileLink($ID)."\">";
change last line to
$ret .= "<a href=\"".getProfileLink($ID)."\" target=\"_blank\">";
==================
open file inc/members.inc.php
1)
and find this line
// Template customizations
// profile Nick/Age/Sex etc.
$nick = '<a href="' . getProfileLink( $p_arr['ID'] ) . '">' . $p_arr['NickName'] . '</a>';
change last line to
$nick = '<a href="' . getProfileLink( $p_arr['ID'] ) . '" target="_blank">' . $p_arr['NickName'] . '</a>';
2)
and this line
// ------------ [end] template variables --------------
if ($aCoupleInfo) {
// profile Nick/Age/Sex etc.
$nick2 = '<a href="' . getProfileLink( $aCoupleInfo['ID'] ) . '">' . $aCoupleInfo['NickName'] . '</a>';
change last line to
$nick2 = '<a href="' . getProfileLink( $aCoupleInfo['ID'] ) . '" target="_blank">' . $aCoupleInfo['NickName'] . '</a>';
===================
open file browse.php
find this lines
$cont .= get_member_thumbnail($arr['ID'], 'none', true ) . '<div class="browse_nick"><a href="' . getProfileLink($arr['ID']) . '">' . $arr['NickName'] . '</a></div></div>';
change line to
$cont .= get_member_thumbnail($arr['ID'], 'none', true ) . '<div class="browse_nick"><a href="' . getProfileLink($arr['ID']) . '" target="_blank">' . $arr['NickName'] . '</a></div></div>';