lament wrote:hubabuba wrote:I need this options because my users used IPB for some time.. and they need those 2 options:
1) when someone recieve a PM.. to be notified via email...
2) when someone send a PM to be stored by default in send box..
Can u plz me more clear where and what exactlly i should modify ? thx
And after that if i could find someone to tell me how can i subscribe to a topic, a user by default, after he reply to a topic.. will be great !
We've debated this, and I too would love that feature, but they're saying it's not going to happen.
Here's our discussion (starting with my post #262).
you can replace line 224 in message_send.php
$checkboxes[] = '<label><input type="checkbox" name="savemessage" value="1" tabindex="'.($cur_index++).'" />'.$lang_pms['Save message'];
with
$checkboxes[] = '<label><input type="checkbox" name="savemessage" value="1" tabindex="'.($cur_index++).'" checked="checked" />'.$lang_pms['Save message'];
so Save message will be checked by default.
You can also add checked="cheked" to the subscription checkbox. You may want to check if is reply or new topic. so the code will look something like that
if (isset($tid))
{
echo ' checked="checked"';
}