original source: in the Nucleus Forum at this forum thread (Author: TrenT)
This plugin was developed by Andrew Black to have new users that register automatically be added to all blogs that you specify in the plugin options. Works with normal Nucleus forms and with NP_phpBB
This plugin only works if you change globalfunctions.php from:
include($DIR_LIBS . 'PARSER.php'); include($DIR_LIBS . 'SKIN.php'); include($DIR_LIBS . 'TEMPLATE.php'); include($DIR_LIBS . 'BLOG.php'); include($DIR_LIBS . 'COMMENTS.php'); include($DIR_LIBS . 'COMMENT.php'); //include($DIR_LIBS . 'ITEM.php'); include($DIR_LIBS . 'NOTIFICATION.php'); include($DIR_LIBS . 'BAN.php'); include($DIR_LIBS . 'PAGEFACTORY.php'); include($DIR_LIBS . 'SEARCH.php');
to this:
include_once($DIR_LIBS . 'PARSER.php'); include_once($DIR_LIBS . 'SKIN.php'); include_once($DIR_LIBS . 'TEMPLATE.php'); include_once($DIR_LIBS . 'BLOG.php'); include_once($DIR_LIBS . 'COMMENTS.php'); include_once($DIR_LIBS . 'COMMENT.php'); //include_once($DIR_LIBS . 'ITEM.php'); include_once($DIR_LIBS . 'NOTIFICATION.php'); include_once($DIR_LIBS . 'BAN.php'); include_once($DIR_LIBS . 'PAGEFACTORY.php'); include_once($DIR_LIBS . 'SEARCH.php');
A core change might be coming to not have to make this modification to the core file globalfunctions.php located in your /nucleus/libs/ folder.