Seite 1 von 1

Checkbox-Voreinstellung ändern - wie?

Verfasst: 15.04.2007 23:19
von Bendix
Hallo!
Wenn ein neuer User meines Forums seine Profil-Seite vor der Nase hat, dann ist unter Einstellungen zB. folgendes voreingestellt:

- Bei Antworten immer benachrichtigen: nein
- Signatur immer anhängen: ja

Im Quelltext kann ich keinen Unterschied bei beiden feststellen, sodass ich nicht weiß, wie ich daran was ändern kann.
Ich möchte nämlich beide auf 'ja' haben. Wie stelle ich das an?

Ben

Verfasst: 16.04.2007 01:39
von DanielHeinrich
Hi!

Code: Alles auswählen

#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_register.php
#
#-----[ FIND ]------------------------------------------
#
$notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : 0;
#
#-----[ REPLACE WITH ]----------------------------------
#
$notifyreply = ( isset($HTTP_POST_VARS['notifyreply']) ) ? ( ($HTTP_POST_VARS['notifyreply']) ? TRUE : 0 ) : TRUE;
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------
#
# EoM
Viel Spaß damit ;-)

cu

Daniel

Verfasst: 16.04.2007 11:33
von Bendix
Vielen Dank, das war's!
Ben