Browse Source

Adds JAV series and Anime/Game/Manga Circle to search listings and group pages.

This might work. This might do nothing. This might break eveything. Place your bets.
NSHkD 5 years ago
parent
commit
e0cf911003
2 changed files with 11 additions and 0 deletions
  1. 7
    0
      sections/torrents/browse.php
  2. 4
    0
      sections/torrents/details.php

+ 7
- 0
sections/torrents/browse.php View File

487
   $Artists = $GroupInfo['Artists'];
487
   $Artists = $GroupInfo['Artists'];
488
   $GroupCatalogueNumber = $GroupInfo['CatalogueNumber'];
488
   $GroupCatalogueNumber = $GroupInfo['CatalogueNumber'];
489
   $GroupPages = $GroupInfo['Pages'];
489
   $GroupPages = $GroupInfo['Pages'];
490
+  $GroupSeries = $GroupInfo['Circle/Series']
490
   $GroupStudio = $GroupInfo['Studio'];
491
   $GroupStudio = $GroupInfo['Studio'];
491
   $GroupDLsiteID = $GroupInfo['DLSiteID'];
492
   $GroupDLsiteID = $GroupInfo['DLSiteID'];
492
   $GroupName = empty($GroupInfo['Name']) ? (empty($GroupInfo['NameRJ']) ? $GroupInfo['NameJP'] : $GroupInfo['NameRJ']) : $GroupInfo['Name'];
493
   $GroupName = empty($GroupInfo['Name']) ? (empty($GroupInfo['NameRJ']) ? $GroupInfo['NameJP'] : $GroupInfo['NameRJ']) : $GroupInfo['Name'];
526
     if ($GroupYear) {
527
     if ($GroupYear) {
527
       $DisplayName .= " [$GroupYear]";
528
       $DisplayName .= " [$GroupYear]";
528
     }
529
     }
530
+    if ($GroupSeries) {
531
+      $DisplayName .= " [$GroupSeries]";
532
+    }
529
     if ($GroupStudio) {
533
     if ($GroupStudio) {
530
       $DisplayName .= " [$GroupStudio]";
534
       $DisplayName .= " [$GroupStudio]";
531
     }
535
     }
646
       if ($GroupYear) {
650
       if ($GroupYear) {
647
         $DisplayName .= " [$GroupYear]";
651
         $DisplayName .= " [$GroupYear]";
648
       }
652
       }
653
+      if ($GroupSeries) {
654
+        $DisplayName .= " [$GroupSeries]";
655
+      }
649
       if ($GroupStudio) {
656
       if ($GroupStudio) {
650
         $DisplayName .= " [$GroupStudio]";
657
         $DisplayName .= " [$GroupStudio]";
651
       }
658
       }

+ 4
- 0
sections/torrents/details.php View File

63
   $Title .= " [$GroupYear]";
63
   $Title .= " [$GroupYear]";
64
 }
64
 }
65
 
65
 
66
+if ($GroupSeries) {
67
+  $DisplayName .= " [$GroupSeries]";
68
+}
69
+
66
 if ($GroupStudio) {
70
 if ($GroupStudio) {
67
   $DisplayName .= " [$GroupStudio]";
71
   $DisplayName .= " [$GroupStudio]";
68
 }
72
 }

Loading…
Cancel
Save