<?php

include('./fancyurls.config.php');
include('./config.php');

// default to default implementation (/member/1234)
// if memberid was not filled out by plugins
if ($memberid == 0)
{
	$data = explode("/",serverVar('PATH_INFO'));
	if (count($data) > 1)
	{
		$memberid = intval($data[1]);
	}
}

selector();

?>