mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-31 02:21:36 +00:00
Empty commit
This commit is contained in:
parent
3fd0724af3
commit
ea1a751455
@ -1,5 +1,11 @@
|
|||||||
CHANGE LOG
|
CHANGE LOG
|
||||||
|
|
||||||
|
2013-12-10 by alderaan
|
||||||
|
Clear cache key "request_artists_$RequestID" in two missed places
|
||||||
|
|
||||||
|
2013-12-10 by alderaan
|
||||||
|
Refactor ignored log file name code (e.g. for "audiochecker.log" and friends)
|
||||||
|
|
||||||
2013-12-01 by alderaan
|
2013-12-01 by alderaan
|
||||||
Fix some CSS issues in the forum search category list for Anorex, Layer Cake, Kuro, and Whatnificent
|
Fix some CSS issues in the forum search category list for Anorex, Layer Cake, Kuro, and Whatnificent
|
||||||
|
|
||||||
|
@ -53,6 +53,7 @@
|
|||||||
$DB->query("
|
$DB->query("
|
||||||
DELETE FROM requests_artists
|
DELETE FROM requests_artists
|
||||||
WHERE RequestID = '$RequestID'");
|
WHERE RequestID = '$RequestID'");
|
||||||
|
$Cache->delete_value("request_artists_$RequestID");
|
||||||
|
|
||||||
if ($UserID != $LoggedUser['ID']) {
|
if ($UserID != $LoggedUser['ID']) {
|
||||||
Misc::send_pm($UserID, 0, 'A request you created has been deleted', "The request \"$FullName\" was deleted by [url=https://".SSL_SITE_URL.'/user.php?id='.$LoggedUser['ID'].']'.$LoggedUser['Username'].'[/url] for the reason: '.$_POST['reason']);
|
Misc::send_pm($UserID, 0, 'A request you created has been deleted', "The request \"$FullName\" was deleted by [url=https://".SSL_SITE_URL.'/user.php?id='.$LoggedUser['ID'].']'.$LoggedUser['Username'].'[/url] for the reason: '.$_POST['reason']);
|
||||||
|
@ -480,15 +480,17 @@
|
|||||||
$DB->query("
|
$DB->query("
|
||||||
DELETE FROM requests_artists
|
DELETE FROM requests_artists
|
||||||
WHERE RequestID = $RequestID");
|
WHERE RequestID = $RequestID");
|
||||||
|
$Cache->delete_value("request_artists_$RequestID");
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($CategoryName === 'Audiobooks' || $CategoryName === 'Comedy') {
|
if ($CategoryName === 'Audiobooks' || $CategoryName === 'Comedy') {
|
||||||
//These types require a year field.
|
//These types require a year field.
|
||||||
if ($NewRequest) {
|
if ($NewRequest) {
|
||||||
$DB->query("INSERT INTO requests (
|
$DB->query("
|
||||||
UserID, TimeAdded, LastVote, CategoryID, Title, Year, Image, Description, Visible, OCLC)
|
INSERT INTO requests (
|
||||||
VALUES
|
UserID, TimeAdded, LastVote, CategoryID, Title, Year, Image, Description, Visible, OCLC)
|
||||||
(".$LoggedUser['ID'].", '".sqltime()."', '".sqltime()."', $CategoryID, '".db_string($Title)."', $Year, '".db_string($Image)."', '".db_string($Description)."', '1', '".db_string($OCLC)."')");
|
VALUES
|
||||||
|
(".$LoggedUser['ID'].", '".sqltime()."', '".sqltime()."', $CategoryID, '".db_string($Title)."', $Year, '".db_string($Image)."', '".db_string($Description)."', '1', '".db_string($OCLC)."')");
|
||||||
|
|
||||||
$RequestID = $DB->inserted_id();
|
$RequestID = $DB->inserted_id();
|
||||||
|
|
||||||
|
@ -568,6 +568,7 @@ function next_hour() {
|
|||||||
WHERE NumTorrents = '0'");
|
WHERE NumTorrents = '0'");
|
||||||
|
|
||||||
// Get each user's amount of snatches of existing torrents
|
// Get each user's amount of snatches of existing torrents
|
||||||
|
$DB->query("TRUNCATE TABLE users_torrent_history_snatch");
|
||||||
$DB->query("
|
$DB->query("
|
||||||
INSERT INTO users_torrent_history_snatch (UserID, NumSnatches)
|
INSERT INTO users_torrent_history_snatch (UserID, NumSnatches)
|
||||||
SELECT xs.uid, COUNT(DISTINCT xs.fid)
|
SELECT xs.uid, COUNT(DISTINCT xs.fid)
|
||||||
|
@ -390,11 +390,12 @@
|
|||||||
$TmpFileList = array();
|
$TmpFileList = array();
|
||||||
$TooLongPaths = array();
|
$TooLongPaths = array();
|
||||||
$DirName = (isset($Tor->Dec['info']['files']) ? Format::make_utf8($Tor->get_name()) : '');
|
$DirName = (isset($Tor->Dec['info']['files']) ? Format::make_utf8($Tor->get_name()) : '');
|
||||||
|
$IgnoredLogFileNames = array('audiochecker.log', 'sox.log');
|
||||||
check_name($DirName); // check the folder name against the blacklist
|
check_name($DirName); // check the folder name against the blacklist
|
||||||
foreach ($FileList as $File) {
|
foreach ($FileList as $File) {
|
||||||
list($Size, $Name) = $File;
|
list($Size, $Name) = $File;
|
||||||
// add +log to encoding
|
// add +log to encoding
|
||||||
if ($T['Encoding'] == "'Lossless'" && preg_match('/(?<!audiochecker)\.log$/i', $Name)) {
|
if ($T['Encoding'] == "'Lossless'" && !in_array($Name, $IgnoredLogFileNames)) {
|
||||||
$HasLog = 1;
|
$HasLog = 1;
|
||||||
}
|
}
|
||||||
// add +cue to encoding
|
// add +cue to encoding
|
||||||
|
Loading…
Reference in New Issue
Block a user