boggseric |
03-02-2016 11:36 PM |
I was able to fix the blank page by modifying the rcd_n_o_additional_notices template. It had code in it for dismissing a notice which doesn't appear to be required anymore?
As a note, I do also have https://vborg.vbsupport.ru/showthread.php?t=277022 installed but I don't think that changed anything.
So I changed rcd_n_o_additional_notices from
Code:
<vb:if condition="$show['quickreply'] OR $show['quickcomment']">
<form action="profile.php?do=dismissnotice" method="post" id="additional_notices" class="notices">
<input type="hidden" name="do" value="dismissnotice" />
<input type="hidden" name="s" value="{vb:raw session.sessionurl}" />
<input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
<input type="hidden" id="dismiss_notice_hidden" name="dismiss_noticeid" value="" />
<input type="hidden" name="url" value="{vb:raw return_link}" />
<ol>
{vb:raw additional_notices}
</ol>
</form>
</vb:if>
to..
Code:
<vb:if condition="$show['quickreply'] OR $show['quickcomment']">
{vb:raw additional_notices}
</vb:if>
I am still able to dismiss the notice if that option is enabled and I am able to post as normal without getting the blank page.
|