vi scrivo le parti k automod non trova e io tentero di mettero a mano:
IL PRIMO ERRORE E NEL WIEWTOPIC
Find
'L_IGNORE_POST' => ($row['hide_post']) ? sprintf($user->lang['POST_BY_FOE'], get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']), '<a href="' . $viewtopic_url . "&p={$row['post_id']}&view=show#p{$row['post_id']}" . '">', '</a>') : '',
--------------------------------------------------------------------------------
Add After
'S_FORUM_THANKS' => ($auth->acl_get('f_thanks', $forum_id)) ? true : false,
IL SECONDO E' IN: includes/ucp/ucp_prefs.php
Find
'user_style' => $data['style'],
);
--------------------------------------------------------------------------------
Add After
if (isset($user->data['user_allow_thanks_pm']) && isset($user->data['user_allow_thanks_email']))
{
$sql_ary = array_merge($sql_ary, array(
'user_allow_thanks_pm' => $data['allowthankspm'],
'user_allow_thanks_email'=> $data['allowthanksemail'],
));
}