View Single Post
Old June 10th, 2009, 05:52 PM   #56 (permalink)
jazde86
Junior Member
 
Join Date: Mar 2007
Posts: 16
I've to disable the Userinfo merge plugin which is location fetch_userinfo_query to not get errors by register a new user.

The code is
Quote:
$hook_fields = array(
"ppgal_user.*",
);

$hook_joins = array(
"LEFT JOIN " . TABLE_PREFIX . "ppgal_user AS ppgal_user ON (ppgal_user.userid = user.userid)",
);

$hook_query_fields .= ', ' . implode(', ', $hook_fields);
$hook_query_joins .= "\r\n" . implode("\r\n", $hook_joins);
jazde86 is offline   Reply With Quote