######################################################################
#
#  View User Record (Staff View)
#
######################################################################
#
#  __LICENSE__
#
######################################################################

use EPrints::Session;
use EPrints::UserPage;

use strict;

my $session = new EPrints::Session;

# Check we have privs
if( !$session->auth_check( "staff-view" ) )
{
	$session->terminate();
	exit( 0 );
}

EPrints::UserPage::process( $session, 1 );

$session->terminate();

