Fehlermeldung in der profile.php nach der Miniprofil- Mod in
Verfasst: 11.02.2007 20:42
Hallo!
Ich habe versucht das Miniprofil- Mod einzubauen aber es will ned. Wenn ich das Profil anschaue kommt folgende Meldung
Parse error: parse error in /var/www/web10000188/phpBB2/profile.php on line 95
Ich färbe mal die entprechende Zeile unten rot.
Kann mir jemand helfen.
Danke Sukkubus
Ich habe versucht das Miniprofil- Mod einzubauen aber es will ned. Wenn ich das Profil anschaue kommt folgende Meldung
Parse error: parse error in /var/www/web10000188/phpBB2/profile.php on line 95
Ich färbe mal die entprechende Zeile unten rot.
Kann mir jemand helfen.
Danke Sukkubus
Code: Alles auswählen
{
if ( !$userdata['session_logged_in'] && $mode == 'editprofile' )
{
redirect(append_sid("login.$phpEx?redirect=profile.$phpEx&mode=editprofile", true));
}
include($phpbb_root_path . 'includes/usercp_register.'.$phpEx);
exit;
// Begin Mini Profile
else if ( $mode == 'miniprofile' )
{
include($phpbb_root_path . 'includes/usercp_miniprofile.'.$phpEx);
exit;
}
// End Mini Profile
}
[color=red]else if ( $mode == 'confirm' )[/color]
{
// Visual Confirmation
if ( $userdata['session_logged_in'] )
{
exit;
}
include($phpbb_root_path . 'includes/usercp_confirm.'.$phpEx);
exit;
}
else if ( $mode == 'sendpassword' )