Quote:
Originally Posted by T3MEDIA
I tried to upgrade but the old templates still look the same... (your signage on the bottom) and I get a database error even if I update the journals in admincp
|
I had the same problem - but if you look around line 120 of the vbjournal_class.php file - which is the code creating the problem:
Code:
FROM myvb3_ journal_entries AS journal_entries LEFT JOIN myvb3_journals AS journals ON
if you look closely, there's a space in the php code after the open quotes before 'journal entries'
Code:
FROM ".TABLE_PREFIX." journal_entries AS journal_entries
so the rendered output is looking for myvb3_<SPACE>journal_entries instead of myvb3_journal_entries