Version 1.0.1 allows you to set it individually for posts and private messages. Currently, the optional User's Choice add-on only works with posts.IPB_Refugee wrote:Hi Ken,
will be be able to decide if we want to put the message of a post and/or of a private message in the notification mail? Will this be configurable via ACP?
EDIT: Or even better: Will users be able to decide what they want?
Regards
Wolfgang
Whoops, thanks for pointing this out. It has been corrected.ttuu wrote:the file language/en/email/prime_notify_privmsg.txt, is not found in pakg.
Code: Select all
$prime_notify->setup_post($sql);
Code: Select all
$sql = substr_replace($sql, ', u.user_notify_content ', strpos($sql, 'FROM'), 0);
$prime_notify->setup_post($sql);
Also dicovered something else: in includes/functions_posting.php does it have to be$sql = substr_replace($sql, ', u.user_notify_content ', strpos($sql, 'FROM'), 0);
$prime_notify->setup_post_template($notify_rows[$row['user_id']],$row);
Code: Select all
[phpBB Debug] PHP Notice: in file /includes/prime_notify.php on line 159: Missing argument 2 for setup_post_template()
Code: Select all
$prime_notify->setup_post_template($notify_rows[$row['user_id']]);
Code: Select all
$prime_notify->setup_post_template($notify_rows[$row['user_id']], $row);
primehalo wrote:Looks like there was a mistake in the installation instructions. In posting.php, change this:To this:Code: Select all
$prime_notify->setup_post_template($notify_rows[$row['user_id']]);
Code: Select all
$prime_notify->setup_post_template($notify_rows[$row['user_id']], $row);