Hi DobePhat,
You will have to import them via the 'SQL Insert' Box.
You will have to copy and paste all the tables and information for the news module again to get the above to work correctly.
You should have something like this:
#
# Table structure for table `xoops_wfslinktous`
#
CREATE TABLE xoops_wfslinktous (
submenuitem int(10) NOT NULL default '10',
textlink varchar(255) NOT NULL default '',
linkpagelogo varchar(255) NOT NULL default '',
button varchar(255) NOT NULL default '',
logo varchar(255) NOT NULL default '',
banner varchar(255) NOT NULL default '',
mainpage int(10) NOT NULL default '1',
newsfeed int(10) NOT NULL default '0',
texthtml varchar(255) NOT NULL default '',
titlelink varchar(255) NOT NULL default '',
textlinkhtml varchar(255) NOT NULL default '',
buttonhtml varchar(255) NOT NULL default '',
logohtml varchar(255) NOT NULL default '',
bannerhtml varchar(255) NOT NULL default '',
newsfeedjs mediumint(10) NOT NULL default '0',
newstitle varchar(255) NOT NULL default '',
PRIMARY KEY (submenuitem)
) TYPE=MyISAM;
#
# Dumping data for table `xoops_wfslinktous`
#
INSERT INTO xoops_wfslinktous VALUES (1, 'http://localhost', 'linktous.png', 'poweredby.gif', 'logo.gif', 'xoops_banner.gif', 1, 1, '', 'Link to us', '
\'><{$linktous.textlink}>', '
\' target=\'_blank\'>/<{$linktous.path}>/<{$linktous.button}>\' alt=\'<{$linktous.sitename}>\'>', '
\' target=\'_blank\'>/<{$linktous.path}>/<{$linktous.logo}>\' alt=\'<{$linktous.sitename}>\'>', '
\' target=\'_blank\'>/<{$linktous.path}>/<{$linktous.banner}>\' alt=\'<{$linktous.sitename}>\'>', 1, '');
Just copy this and paste it into the SQL Insert box and that should restore your previously backed up information.
Remember for this to work, you will have to 'keep' the pefix at the start of each table
ie xoops_newstory and nit newstory
Hope this helps