After much looking through both the vb templates and the product xml upload, I deleted this section under the WD: Global_Start section (approx line 206 of the xml file) and my attachments list in UserCP showed up again:
PHP Code:
if (isset($vbulletin->templatecache['modifyattachmentsbit']))
{
$find_string = compile_template('<phrase 1="$post[counter]">$vbphrase[x_downloads]</phrase>');
$add_string = compile_template('<if condition="$post[\'counter\'] > 0"> - <a href="#" onclick="whodownloaded($post[attachmentid]); return false;">$vbphrase[psiwd_who_downloaded]</a></if>');
$vbulletin->templatecache['modifyattachmentsbit'] = str_replace($find_string, $find_string . $add_string, $vbulletin->templatecache['headinclude']);
}
Unfortunately I am not knowledgeable enough to know exactly where the conflict is...only that there is one lol I assume the above section is intended to show maybe the link to the who downloaded popup list...but again I don't know lol
All I know is deleting that section takes away the bug and so far doesn't appear to damage anything LOL