there is still the issue where you can only link by ID and not the entire hyperlink but that is actually ok, it should be like that.
Ok fixed it:
Find:
Code:
`id` INT( 20 ) NOT NULL ,
`type` SET( 'google', 'youtube' ) NOT NULL ,
`video_id` INT( 255 ) NOT NULL ,
`title` VARCHAR( 255 ) NOT NULL
and replace with
Code:
`id` INT( 20 ) NOT NULL ,
`type` SET( 'google', 'youtube' ) NOT NULL ,
`video_id` INT( 255 ) NOT NULL ,
`title` VARCHAR( 255 ) NOT NULL ,
`post_id` INT( 10 ) NOT NULL ,
`forum_id` INT( 10 ) NOT NULL ,
`date_added` INT( 10 ) NOT NULL
I also included the replacemnt php file. I put the additions as int(10) to keep them small.