Skip to content

Commit

Permalink
Merge pull request #388 from jgknight/develop
Browse files Browse the repository at this point in the history
Honor the email.mention default pref for new users
  • Loading branch information
jgknight committed Nov 26, 2014
2 parents a35a89d + f3b5411 commit 5776f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/models/ETMemberModel.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function create(&$values)

// Set default preferences.
if (empty($values["preferences"])) {
$preferences = array("email.privateAdd", "email.post", "starOnReply");
$preferences = array("email.privateAdd", "email.post", "starOnReply", "email.mention");
foreach ($preferences as $p) {
$values["preferences"][$p] = C("esoTalk.preferences.".$p);
}
Expand Down

0 comments on commit 5776f3a

Please sign in to comment.