<br />OPTIONAL STEPS - To restrict the Sending of Private Messages: <br /> <br />########################## <br />## Open sendprivate.php ## <br />########################## <br /> <br />######################################## <br /># Find this: <br /># <br /> <br /> $user = $userob -> authenticate("U_TextCols,U_TextRows,U_Preview"); <br /> <br /> <br /> <br /># <br /># Change to this: <br /># <br /> <br /> $user = $userob -> authenticate("U_TextCols,U_TextRows,U_Preview,U_PrivateModeration"); <br /> <br /> // ----------------------------------- <br /> // Block if they are in Private Moderation <br /> if ($user['U_PrivateModeration'] == "yes") { <br /> $html = new html; <br /> $html -> not_right('You cannot send Private Messages while you are in Private Moderation.',$Cat); <br /> } <br /> <br /> <br /> <br />########################### <br />## Open mess_handler.php ## <br />########################### <br /> <br />######################################## <br /># Find this: <br /># <br /> <br /> $user = $userob -> authenticate("U_Groups,U_EReplies,U_TextCols,U_TextRows,U_Preview"); <br /> $Username = $user['U_Username']; <br /> $Password = $user['U_Password']; <br /> <br /> <br /># <br /># Change to this: <br /># <br /> <br /> $user = $userob -> authenticate("U_Groups,U_EReplies,U_TextCols,U_TextRows,U_Preview,U_PrivateModeration"); <br /> $Username = $user['U_Username']; <br /> $Password = $user['U_Password']; <br /> <br /> // ----------------------------------- <br /> // Block if they are in Private Moderation <br /> if ($user['U_PrivateModeration'] == "yes") { <br /> $html = new html; <br /> $html -> not_right('You cannot send Private Messages while you are in Private Moderation.',$Cat); <br /> } <br />