Browse Source

Remove missed references to Vote column

spaghetti 8 years ago
parent
commit
62d7f93c51
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      classes/torrents.class.php

+ 2
- 2
classes/torrents.class.php View File

@@ -518,12 +518,12 @@ class Torrents {
518 518
         (ID, GroupID, GroupName, GroupNameRJ, GroupNameJP, TagList, Year, CatalogueNumber, CategoryID, Time,
519 519
         Size, Snatched, Seeders, Leechers, Censored, Studio, Series, DLsiteID,
520 520
         FreeTorrent, Media, Container, Codec, Resolution, AudioFormat, Subbing, Language, Description,
521
-        FileList, VoteScore, ArtistName)
521
+        FileList, ArtistName)
522 522
       SELECT
523 523
         t.ID, g.ID, Name, NameRJ, NameJP, TagList, Year, CatalogueNumber, CategoryID, UNIX_TIMESTAMP(t.Time),
524 524
         Size, Snatched, Seeders, Leechers, Censored, Studio, Series, DLsiteID,
525 525
         CAST(FreeTorrent AS CHAR), Media, Container, Codec, Resolution, AudioFormat, Subbing, Language, Description,
526
-        REPLACE(REPLACE(FileList, '_', ' '), '/', ' ') AS FileList, $VoteScore, '".db_string($ArtistName)."'
526
+        REPLACE(REPLACE(FileList, '_', ' '), '/', ' ') AS FileList, '".db_string($ArtistName)."'
527 527
       FROM torrents AS t
528 528
         JOIN torrents_group AS g ON g.ID = t.GroupID
529 529
       WHERE g.ID = $GroupID");

Loading…
Cancel
Save