Empty commit

This commit is contained in:
Git 2011-08-31 08:00:08 +00:00
parent 958b171f96
commit 3500cf5c47
3 changed files with 22 additions and 0 deletions

View File

@ -872,6 +872,13 @@ CREATE TABLE `torrents_balance_history` (
KEY `Time` (`Time`) KEY `Time` (`Time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8; ) 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` ( CREATE TABLE `torrents_comments` (
`ID` int(10) NOT NULL AUTO_INCREMENT, `ID` int(10) NOT NULL AUTO_INCREMENT,
`GroupID` int(10) NOT NULL, `GroupID` int(10) NOT NULL,
@ -933,6 +940,13 @@ CREATE TABLE `torrents_logs_new` (
KEY `TorrentID` (`TorrentID`) KEY `TorrentID` (`TorrentID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8; ) 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` ( CREATE TABLE `torrents_peerlists` (
`GroupID` int(10) NOT NULL, `GroupID` int(10) NOT NULL,
`SeedersList` varchar(512) DEFAULT NULL, `SeedersList` varchar(512) DEFAULT NULL,

View File

@ -228,6 +228,10 @@
<? <?
$Links = explode(" ", $Links); $Links = explode(" ", $Links);
foreach($Links as $Link) { foreach($Links as $Link) {
if ($local_url = $Text->local_url($Link)) {
$Link = $local_url;
}
?> ?>
<a href="<?=$Link?>"><?=$Link?></a> <a href="<?=$Link?>"><?=$Link?></a>
<? <?

View File

@ -374,6 +374,10 @@
<? <?
$Links = explode(" ", $Links); $Links = explode(" ", $Links);
foreach($Links as $Link) { foreach($Links as $Link) {
if ($local_url = $Text->local_url($Link)) {
$Link = $local_url;
}
?> ?>
<a href="<?=$Link?>"><?=$Link?></a> <a href="<?=$Link?>"><?=$Link?></a>
<? <?