Quote:
Originally Posted by kh99
Look in includes/class_dm_threadpost.php, search for class vB_DataManager_Thread_FirstPost.
|
Thanks a lot for your help, this is exactly what I was looking for, Have a nice day
--------------- Added [DATE]1311472606[/DATE] at [TIME]1311472606[/TIME] ---------------
My understanding is that when we create a new thread, that thread adds a new record in
thread table and also new record in
post table. My objective is to populate one custom field into both of the tables.
I have added a custom field in post table and also in thread table.
I am able to push custom field information to thread table properly by doing following.
$newpost['customfield1'] = $vbulletin->GPC['customfield1'];
But I am having hard time finding why custom field information is not getting into post table field.
Which part of the logic from class_dm_threadpost.php could be generating new record into post table.
This seems to have become a big puzzle for me to solve, Please help