Skip to content

Commit

Permalink
Update for fix for issue #720
Browse files Browse the repository at this point in the history
  • Loading branch information
eSilverStrike committed Dec 28, 2016
1 parent 446f94f commit 4692014
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions system/lib-plugins.php
Expand Up @@ -1303,10 +1303,12 @@ function PLG_userInfoChanged($uid)
$function($uid);
}
}

$function = 'CUSTOM_user_changed';
if (function_exists($function)) {
$function($uid);

if ($_CONF['custom_registration']) {
$function = 'CUSTOM_user_changed';
if (function_exists($function)) {
$function($uid);
}
}
}

Expand Down

0 comments on commit 4692014

Please sign in to comment.