WinstonFl, maybe you run again all the sql queries? If you did so, you'll have ended up with double entries in some tables.
I guess you must have missed something while updating.
The file "templates/subSilver/admin/report_data_body.tpl" should have the following as its 1st line:
If not, you didn't update it.
If the problem continues, i would recommend to delete both admin tables and create them from the beginning, in order to be sure everything is done according to the instructions. If you want to do this, just run the following sql queries in phpmyadmin:
Code: Select all
TRUNCATE TABLE `phpbb_reports_data`;
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (1, 'Wrong forum', 'The message has been posted in a wrong forum', 0, 20, 1);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (2, 'Bad words', 'The post contains bad words', 0, 30, 1);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (3, 'Double post', 'User has already posted the same message before', 0, 40, 1);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (4, 'Spam', 'The post contains spam', 0, 50, 1);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (5, 'User banned', 'User was banned from the forum', 0, 40, 2);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (6, 'Post deleted', 'Post was deleted from the topic', 0, 20, 2);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (7, 'Post moved', 'Post was moved to another topic', 0, 50, 2);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (8, 'Post edited', 'Post was edited', 0, 30, 2);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (9, 'Other', 'Everything else', 1, 10, 1);
INSERT INTO `phpbb_reports_data` (`data_id`, `data_name`, `data_desc`, `data_comments`, `data_order`, `data_code`) VALUES (10, 'Other', 'Everything else', 1, 10, 2);
TRUNCATE TABLE `phpbb_reports_config`;
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('email_notification', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('allow_mods_delete', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('allow_mods_pm', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('allow_mods_email', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('reports_per_page', '10');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('actions_per_report', '3');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('default_reports_status', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('allow_multiple_reports', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('allow_users_own', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('allow_users_edit', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('allow_users_delete', '1');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('users_flood_interval', '15');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('color_status_open', 'red');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('color_status_closed', 'green');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('color_status_reopened', 'orange');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('user_panels', 'report_info,1,1|post_info,1,0|user_reports_info,1,0');
INSERT INTO `phpbb_reports_config` (`config_name`, `config_value`) VALUES ('mod_panels', 'report_info,1,1|post_info,1,0|poster_info,1,0|action_info,1,0');