Quote:
Originally Posted by Cat Terrist
Yes.
However I did hit one bizarre problem - after multiple forums are enabled, I get a database error every time a new thread is posted on the forum - but a new thread via EI works. One forum, no problem.
But yet, the thread starter is there when you refresh and all posts after that work fine as well as EI. I know where in the xml the error is produced but I havent quite worked out why.
EDIT : Okay, nutted it out, it was the call EI makes to see if there is attachments to the posts. In line 765 of product-emailreplyint.xml, it looks like this for me -
Code:
WHERE postidid = $postid
It MUST be
Code:
WHERE contentid = $postid
And I am once again good. You might find that line is correct if you have not been testing fixes like I've been.
|
How did you pull off step 6? USERCP_SHELL does not contain this at all.
6. Template EDIT
In:
Admincp -> Styles & Templates -> Edit Templates -> User Control Panel Templates -> USERCP_SHELL
**************
FIND:
**************
<tr>
<td class="$navclass[substhreads_editfolders]" nowrap="nowrap"><a class="smallfont" href="subscription.php?$session[sessionurl]do=editfolders">$vbphrase[edit_folders]</a></td>
</tr>
**************
AND ADD UNDER IT:
**************
<!-- ##### START MODIFICATION - Email Integration ##### -->
<tr>
<td class="$navclass[subscribe_forums]" nowrap="nowrap"><a class="smallfont" href="subscribeforums.php?$session[sessionurl]do=list">$vbphrase[ei_edit_sub_forums]</a></td>
</tr>
<!-- ##### END MODIFICATION - Email Integration ##### -->
**************
CLICK SAVE!
**************