diff --git a/gazelle.sql b/gazelle.sql
index f9c5614f..ce0186f3 100644
--- a/gazelle.sql
+++ b/gazelle.sql
@@ -872,6 +872,13 @@ CREATE TABLE `torrents_balance_history` (
KEY `Time` (`Time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+CREATE TABLE `torrents_cassette_approved` (
+ `TorrentID` int(10) NOT NULL DEFAULT '0',
+ `UserID` int(10) NOT NULL DEFAULT '0',
+ `TimeAdded` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+ KEY `TimeAdded` (`TimeAdded`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+
CREATE TABLE `torrents_comments` (
`ID` int(10) NOT NULL AUTO_INCREMENT,
`GroupID` int(10) NOT NULL,
@@ -933,6 +940,13 @@ CREATE TABLE `torrents_logs_new` (
KEY `TorrentID` (`TorrentID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+CREATE TABLE `torrents_lossymaster_approved` (
+ `TorrentID` int(10) NOT NULL DEFAULT '0',
+ `UserID` int(10) NOT NULL DEFAULT '0',
+ `TimeAdded` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
+ KEY `TimeAdded` (`TimeAdded`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+
CREATE TABLE `torrents_peerlists` (
`GroupID` int(10) NOT NULL,
`SeedersList` varchar(512) DEFAULT NULL,
diff --git a/sections/reportsv2/ajax_new_report.php b/sections/reportsv2/ajax_new_report.php
index 36b7eb78..f046ee2b 100644
--- a/sections/reportsv2/ajax_new_report.php
+++ b/sections/reportsv2/ajax_new_report.php
@@ -228,6 +228,10 @@
$Links = explode(" ", $Links);
foreach($Links as $Link) {
+
+ if ($local_url = $Text->local_url($Link)) {
+ $Link = $local_url;
+ }
?>
=$Link?>
diff --git a/sections/reportsv2/static.php b/sections/reportsv2/static.php
index 25955beb..07bce6d0 100644
--- a/sections/reportsv2/static.php
+++ b/sections/reportsv2/static.php
@@ -374,6 +374,10 @@
$Links = explode(" ", $Links);
foreach($Links as $Link) {
+
+ if ($local_url = $Text->local_url($Link)) {
+ $Link = $local_url;
+ }
?>
=$Link?>