Okay, it works now (I think)
I edited the SQL Query in forum.php (142ff) and changed it to:
Code:
$DB_site->query("INSERT INTO forum
(forumid,styleid,title,description,active,displayorder,parentid,
parentlist,allowposting,cancontainthreads,daysprune,newpostemail,newthreademail,
moderatenew,allowhtml,allowbbcode,allowimages,allowsmilies,allowicons,
styleoverride,allowratings,countposts,moderateattach,link,linktarget)
VALUES
(NULL,'$styleset','".addslashes($title)."','".addslashes($description)."','$isactive','$displayorder','$parentid',
'','$allowposting','$cancontainthreads','$daysprune','".addslashes($newpostemail)."','".addslashes($newthreademail)."',
'$moderatenew','$aallowhtmlcode','$aallowbbcode','$aallowimgcode','$aallowsmilies','$aallowicons',
'$styleoverride','$allowratings','$countposts','$moderateattach','".addslashes($link)."','$linktarget')");
$forumid=$DB_site->insert_id();
I added linktarget and changed 'linktarget='$linktarget' to '$linktarget', now it looks okay for me in the db.
Is this correct?
Thanks,
-Tom
P.S. @AS_Eagle_1: How did it work for you