the 'FROM' key array should be structured inversely of what it is now.
so instead of :
Code: Select all
'FROM' => array(
BOOKMARKS_TABLE => 'b',
TOPICS_TABLE => 't'
),
Code: Select all
'FROM' => array(
'b' => BOOKMARKS_TABLE ,
't' => TOPICS_TABLE
),
also, it adheres more to the "key-value" concept.
i stumbled on this problem while working on my mod here :
http://www.phpbb.com/community/viewtopi ... #p12861299