<?php
// This file is part of the Savane project
// <http://gna.org/projects/savane/>
//
// $Id: users,v 1.12 2004/01/31 00:56:17 yeupou Exp $
//
//
// SourceForge: Breaking Down the Barriers to Open Source Development
// Copyright 1999-2000 (c) The SourceForge Crew
//
//
//  Copyright 2000-2003 (c) Free Software Foundation
//  See the ChangeLog file for a detailed list of changes
//
//
//
//

require "./include/pre.php";    

$res_user=user_get_result_set_from_unix(basename($REQUEST_URI));

if (db_numrows($res_user) < 1) {

	exit_error("Invalid User","That user does not exist.");

} else {

	//set up the group_id
	$user_id=db_result($res_user,0,'user_id');

	//now show the project page
	include ('./include/user_home.php');

}

?>
