mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-02-21 20:59:02 +00:00
Empty commit
This commit is contained in:
parent
958b171f96
commit
3500cf5c47
14
gazelle.sql
14
gazelle.sql
@ -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,
|
||||||
|
@ -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>
|
||||||
<?
|
<?
|
||||||
|
@ -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>
|
||||||
<?
|
<?
|
||||||
|
Loading…
Reference in New Issue
Block a user