Seite 1 von 1

Profile nur für reg. User

Verfasst: 21.04.2004 01:08
von Dunkles-Wesen
Hallo

kann man irgentwie umstellen, bzw. im Quelltext ändern, das Profile der User nur für reg. User sichtbar sind?
Sonst soll die übliche Abfrage nach Nick und PW kommen
ist sowas möglich ?

Verfasst: 21.04.2004 01:32
von andreasOymann
profile.php

suche

Code: Alles auswählen

	if ( $mode == 'viewprofile' )
	{
		include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx);
		exit;
	}
ersetze mit

Code: Alles auswählen

	if ( $mode == 'viewprofile' )
	{
		if( !$userdata['session_logged_in'] ) 
		{ 
		   header("Location: " . append_sid("login.$phpEx?redirect=index.$phpEx", true)); 
		   exit; 
		} 
		else
		{
			include($phpbb_root_path . 'includes/usercp_viewprofile.'.$phpEx);
			exit;
		}
	}

Verfasst: 21.04.2004 01:48
von Dunkles-Wesen
uii

danke für die rasche Antwort