Quote:
Originally Posted by geoff4787
I installed and uploaded everything and I get this error when I click the journal link:
Parse error: syntax error, unexpected T_PRIVATE, expecting ']' in /public_html/journal.php(564) : eval()'d code on line 188
|
In journal_journalpage
Find this:
Code:
<div class="smallfont">
<b>$vbphrase[status]</b>: <if condition="$journalinfo[private]=='1'"><b><font color="red">$vbphrase[private]</font></b><else /><b><font color="green">$vbphrase[public]</font></b></if>
</div>
Change it to this:
Code:
<div class="smallfont">
<b>$vbphrase[status]</b>: <if condition="$journalinfo['private']=='1'"><b><font color="red">$vbphrase[private]</font></b><else /><b><font color="green">$vbphrase[public]</font></b></if>
</div>
Tim