mirror of
https://github.com/WhatCD/Gazelle.git
synced 2025-01-18 20:21:37 +00:00
Empty commit
This commit is contained in:
parent
ea1a751455
commit
ad53564f19
@ -1,5 +1,8 @@
|
||||
CHANGE LOG
|
||||
|
||||
2013-12-10 by alderaan
|
||||
Fix bug that would assign the "Log" flag to torrents that shouldn't have it
|
||||
|
||||
2013-12-10 by alderaan
|
||||
Clear cache key "request_artists_$RequestID" in two missed places
|
||||
|
||||
|
@ -243,7 +243,8 @@
|
||||
f.Name,
|
||||
p.AddedTime,
|
||||
p.ID,
|
||||
p.Body
|
||||
p.Body,
|
||||
t.CreatedTime
|
||||
FROM forums_posts AS p
|
||||
JOIN forums_topics AS t ON t.ID=p.TopicID
|
||||
JOIN forums AS f ON f.ID=t.ForumID
|
||||
|
@ -395,7 +395,7 @@
|
||||
foreach ($FileList as $File) {
|
||||
list($Size, $Name) = $File;
|
||||
// add +log to encoding
|
||||
if ($T['Encoding'] == "'Lossless'" && !in_array($Name, $IgnoredLogFileNames)) {
|
||||
if ($T['Encoding'] == "'Lossless'" && !in_array($Name, $IgnoredLogFileNames) && substr($Name, -4, 4) === '.log') {
|
||||
$HasLog = 1;
|
||||
}
|
||||
// add +cue to encoding
|
||||
|
Loading…
Reference in New Issue
Block a user