Seite 1 von 1

Auto Emailbenachrichtigung?

Verfasst: 07.10.2005 20:06
von FranksterJ
Hi,

ich will das generell bei Neuanmeldung von Benutzern die Emailbenachrichtigung bei neuen Antworten im Forum aktiviert ist! Wo kann man das einstellen?


THX

Verfasst: 08.10.2005 07:44
von Mario Siebert
Einstellen kann man es im Standard phpBB2 nicht, dazu ist eine kleine Änderung in der Datei includes/usercp_register.php nötig:

[suchen]

Code: Alles auswählen

$notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 0;
[ersetzten durch]

Code: Alles auswählen

$notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : TRUE;
Grüße Mario