Log in

View Full Version : Members profile link like VB3


influence
11-30-2003, 09:35 PM
Ok I am using VB 2.3.2 and I was wondering if there is a way for me to change the members profile links like VB3 ( https://vborg.vbsupport.ru/member.php?u=000000 ) . I know someone might ask why dont you just upgrade to vb3, well I can't right now until a final version of it comes out. I hate upgrading every 2 weeks or months since there is a new beta version out every now and then.

So if there is a way for me to change that links or make a custom link to the member profile instead then that would be great. It dont really have to be like VB3.

thanks

NTLDR
11-30-2003, 09:52 PM
In member.php find:

if ((!isset($action) or $action=="") and (!isset($a) or $a=="")) {
$action="lostpw";
}

Replace with:

if ((!isset($action) or $action=="") and (!isset($a) or $a=="")) {
$action="getinfo";
}
$userid = &$u;


Untested but should work.

influence
12-01-2003, 01:16 PM
Dont work. I am getting a "This user has not registered and therefore does not have a profile to view." error message

$action="getinfo"; ? shouldn't it say lostpw also?

influence
12-01-2003, 02:36 PM
can anyone else help me out with this