Blog
Documentation
Book a Demo
toggle menu
Categories
Discussions
Activity
Best Of...
Sign In
Sign In
Categories
Discussions
Activity
Best Of...
Sign In
×
Home
›
Vanilla 1.0 Help
Discussion
Disable email sending on Role change
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Disable email sending on Role change
rayk
New
October 2009
edited October 2009
in
Vanilla 1.0 Help
Vanilla 1 question!
How do I disable the sending of email when I change someones role?
Cheers
0
Comments
Mark
Vanilla Staff
October 2009
Hmm. I don't think that's a core feature. You'll probably have to go into the code and comment it out. You can do it by commenting out line 190 of library/People/People.Class.UserManager.php.
Change it from this:
$e->Send();
to this:
// $e->Send();
Here's the file on Google code:
http://code.google.com/p/lussumo-vanilla/source/browse/trunk/src/library/People/People.Class.UserManager.php#190
0
Sign In
or
Register
to comment.
Comments
Change it from this:
$e->Send();
to this:
// $e->Send();
Here's the file on Google code: http://code.google.com/p/lussumo-vanilla/source/browse/trunk/src/library/People/People.Class.UserManager.php#190