To solve this:
open /includes/usercp_register.php
Search for
Quote:
$allowviewonline = ( isset($_POST['hideonline']) ) ? ( ($_POST['hideonline']) ? 0 : true ) : true;
$profile_view_popup = ( isset($_POST['profile_view_popup']) ) ? ( ($_POST['profile_view_popup']) ? true : 0 ) : 0;
$viewemail = ( isset($_POST['viewemail']) ) ? ( ($_POST['viewemail']) ? true : 0 ) : 0;
$allowmassemail = ( isset($_POST['allowmassemail']) ) ? ( ($_POST['allowmassemail']) ? true : 0 ) : 0;
$allowpmin = ( isset($_POST['allowpmin']) ) ? ( ($_POST['allowpmin']) ? true : 0 ) : 0;
$notifyreply = ( isset($_POST['notifyreply']) ) ? ( ($_POST['notifyreply']) ? true : 0 ) : 0;
$notifypm = ( isset($_POST['notifypm']) ) ? ( ($_POST['notifypm']) ? true : 0 ) : true;
$popup_pm = ( isset($_POST['popup_pm']) ) ? ( ($_POST['popup_pm']) ? true : 0 ) : true;
$setbm = ( isset($_POST['setbm']) ) ? ( ($_POST['setbm']) ? true : 0 ) : 0;
$sid = (isset($_POST['sid'])) ? $_POST['sid'] : 0;
And remplace for:
Quote:
$allowviewonline = ( isset($_POST['hideonline']) ) ? ( ($_POST['hideonline']) ? 0 : true ) : true;
$profile_view_popup = ( isset($_POST['profile_view_popup']) ) ? ( ($_POST['profile_view_popup']) ? true : 0 ) : 0;
$viewemail = ( isset($_POST['viewemail']) ) ? ( ($_POST['viewemail']) ? true : 0 ) : 0;
$allowmassemail = ( isset($_POST['allowmassemail']) ) ? ( ($_POST['allowmassemail']) ? true : 0 ) : true;
$allowpmin = ( isset($_POST['allowpmin']) ) ? ( ($_POST['allowpmin']) ? true : 0 ) : true;
$notifyreply = ( isset($_POST['notifyreply']) ) ? ( ($_POST['notifyreply']) ? true : 0 ) : true;
$notifypm = ( isset($_POST['notifypm']) ) ? ( ($_POST['notifypm']) ? true : 0 ) : true;
$popup_pm = ( isset($_POST['popup_pm']) ) ? ( ($_POST['popup_pm']) ? true : 0 ) : true;
$setbm = ( isset($_POST['setbm']) ) ? ( ($_POST['setbm']) ? true : 0 ) : 0;
$sid = (isset($_POST['sid'])) ? $_POST['sid'] : 0;
Note:
Dont forget clear the cache.
$notifyreply is in true, this meaning all the users receive a email when in her post receive a reply.
If you want the user do not receibe a email when a receive a reply, You do not modify de source code.
I hope this help you.