Seite 1 von 1

eMail-Benachichtigung standartmäßig auf JA?

Verfasst: 25.09.2002 15:23
von MSOMP
Hi, ich bins nochmal,
wie stelle ich es an, dass die eMail-Benachichtigung bei Neuregistrierten Usern standartmäßig auf JA gesetzt wird?

Verfasst: 25.09.2002 15:40
von Acid
für Topic-Reply-Benachrichtigung?
zu finden in der usercp_register.php:

++FINDE++
'NOTIFY_REPLY_YES' => ( $notifyreply ) ? 'checked="checked"' : '',
'NOTIFY_REPLY_NO' => ( !$notifyreply ) ? 'checked="checked"' : '',

++MIT FOLGENDEM ERSETZEN++
'NOTIFY_REPLY_YES' => ( !$notifyreply ) ? 'checked="checked"' : '',
'NOTIFY_REPLY_NO' => ( $notifyreply ) ? 'checked="checked"' : '',

oder für PM-Benachrichtigung?
zu finden in der usercp_register.php:

++FINDE++
'NOTIFY_PM_YES' => ( $notifypm ) ? 'checked="checked"' : '',
'NOTIFY_PM_NO' => ( !$notifypm ) ? 'checked="checked"' : '',

++MIT FOLGENDEM ERSETZEN++
'NOTIFY_PM_YES' => ( !$notifypm ) ? 'checked="checked"' : '',
'NOTIFY_PM_NO' => ( $notifypm ) ? 'checked="checked"' : '',

Verfasst: 13.10.2002 12:22
von MSOMP
Hi, ich bins nochmal...
Und zwar hab ich das mal so umgeschrieben und es funktioniert. Aber wenn ein User auf sein Profil schaut, wird automatisch die Bestätigung auf NEIN gesetzt. Warum ist das so und was kann ich da machen?

Verfasst: 13.10.2002 19:12
von Acid
...hmm... mach ma nur die obere Änderung (denn PM Benachrichtigung steht ja scho auf "Ja"). :roll:

Verfasst: 14.10.2002 16:40
von MSOMP
hab ja nur das erste geändert...
hmmm, ich weiß nicht, wieso das so ist

Verfasst: 15.10.2002 09:26
von Acid
...welche Benachrichtigung springt nu auf "Nein" ? ...eventuell dann halt obige Schritte andersherum durchführen. :wink: