some notifier optimisations. Also put a fixme on the invite total generations for new accounts, which is incorrect and now commented out.

This commit is contained in:
redmatrix
2015-12-16 14:47:30 -08:00
parent 9b4e6e1ec0
commit b155f2260f
3 changed files with 21 additions and 27 deletions

View File

@@ -103,7 +103,9 @@ function register_post(&$a) {
if($using_invites && $invite_code) {
q("delete * from register where hash = '%s'", dbesc($invite_code));
set_pconfig($result['account']['account_id'],'system','invites_remaining',$num_invites);
// @FIXME - this total needs to be stored by account, but pconfig operates on channels
// This also needs to be considered when using 'invites_remaining' in mod/invite.php
// set_pconfig($result['account']['account_id'],'system','invites_remaining',$num_invites);
}
if($policy == REGISTER_OPEN ) {