vb link files for members/forums
Submitted Jason H, Mar 30 2012 10:49 AM | Last updated Dec 30 2012 04:58 PM
$qs = explode('-', str_replace( '/member.php/', '', $_SERVER['QUERY_STRING'] ? $_SERVER['QUERY_STRING'] : $_SERVER['REQUEST_URI'] ) );
ipsRegistry::$request['u'] = $qs[0];
For members/forums, $qs[0] winds up being u=102, for example, which then further down, causes it to fail the is_numeric check.
I just added
$qs[0] = str_replace('u=','',$qs[0]);
Between those two lines to strip it out.. Same with the forums redirect. Happens on the vb4.0 converters, I'd assume others as well.
| Status: | Cannot Reproduce |
| Version: | 0 |
| Fixed In: | 0 |











2 Comments
Updating Status to: Cannot Reproduce
Updating Version to: 0
Suspect that this has already been fixed as I cannot find this code in the redirector scripts (or anywhere else in the current build).