Browse Source

More torrent search form edits (user uploads)

pjc 5 years ago
parent
commit
0b2a796bcf
1 changed files with 7 additions and 28 deletions
  1. 7
    28
      sections/torrents/user.php

+ 7
- 28
sections/torrents/user.php View File

@@ -353,46 +353,25 @@ $Pages = Format::get_pages($Page, $TorrentCount, TORRENTS_PER_PAGE);
353 353
           <td class="label"><strong>Release specifics:</strong></td>
354 354
           <td class="nobr" colspan="3">
355 355
             <select id="container" name="container" class="ft_container">
356
-              <option value="">Container</option>
356
+              <option value="">Format</option>
357 357
 <?  foreach ($Containers as $ContainerName) { ?>
358 358
               <option value="<?=display_str($ContainerName); ?>"<?Format::selected('container', $ContainerName)?>><?=display_str($ContainerName); ?></option>
359
-<?  } ?>
360
-<?  foreach ($ContainersGames as $ContainerName) { ?>
361
-              <option value="<?=display_str($ContainerName); ?>"<?Format::selected('container', $ContainerName)?>><?=display_str($ContainerName); ?></option>
362 359
 <?  } ?>
363 360
             </select>
364 361
             <select id="codec" name="codec" class="ft_codec">
365
-              <option value="">Codec</option>
362
+              <option value="">License</option>
366 363
 <?  foreach ($Codecs as $CodecName) { ?>
367 364
               <option value="<?=display_str($CodecName); ?>"<?Format::selected('codec', $CodecName)?>><?=display_str($CodecName); ?></option>
368
-<?  } ?>
369
-            </select>
370
-            <select id="audioformat" name="audioformat" class="ft_audioformat">
371
-              <option value="">AudioFormat</option>
372
-<?  foreach ($AudioFormats as $AudioFormatName) { ?>
373
-              <option value="<?=display_str($AudioFormatName); ?>"<?Format::selected('audioformat', $AudioFormatName)?>><?=display_str($AudioFormatName); ?></option>
374 365
 <?  } ?>
375 366
             </select>
376 367
             <select id="resolution" name="resolution" class="ft_resolution">
377
-              <option value="">Resolution</option>
368
+              <option value="">Assembly Level</option>
378 369
 <?  foreach ($Resolutions as $ResolutionName) { ?>
379 370
               <option value="<?=display_str($ResolutionName); ?>"<?Format::selected('resolution', $ResolutionName)?>><?=display_str($ResolutionName); ?></option>
380
-<?  } ?>
381
-            </select>
382
-            <select id="language" name="language" class="ft_language">
383
-              <option value="">Language</option>
384
-<?  foreach ($Languages as $LanguageName) { ?>
385
-              <option value="<?=display_str($LanguageName); ?>"<?Format::selected('language', $LanguageName)?>><?=display_str($LanguageName); ?></option>
386
-<?  } ?>
387
-            </select>
388
-            <select id="subbing" name="subbing" class="ft_subbing">
389
-              <option value="">Subs</option>
390
-<?  foreach ($Subbing as $SubbingName) { ?>
391
-              <option value="<?=display_str($SubbingName); ?>"<?Format::selected('subbing', $SubbingName)?>><?=display_str($SubbingName); ?></option>
392 371
 <?  } ?>
393 372
             </select>
394 373
             <select name="media" class="ft_media">
395
-              <option value="">Media</option>
374
+              <option value="">Platform</option>
396 375
 <?  foreach ($Media as $MediaName) { ?>
397 376
               <option value="<?=display_str($MediaName); ?>"<?Format::selected('media',$MediaName)?>><?=display_str($MediaName); ?></option>
398 377
 <?  } ?>
@@ -404,9 +383,9 @@ $Pages = Format::get_pages($Page, $TorrentCount, TORRENTS_PER_PAGE);
404 383
           <td class="label"><strong>Misc:</strong></td>
405 384
           <td class="nobr" colspan="3">
406 385
             <select name="censored" class="ft_censored">
407
-              <option value="3">Censored?</option>
408
-              <option value="1"<?Format::selected('censored', 1)?>>Censored</option>
409
-              <option value="0"<?Format::selected('censored', 0)?>>Uncensored</option>
386
+              <option value="3">Original?</option>
387
+              <option value="1"<?Format::selected('censored', 1)?>>Original</option>
388
+              <option value="0"<?Format::selected('censored', 0)?>>Not Original</option>
410 389
             </select>
411 390
           </td>
412 391
         </tr>

Loading…
Cancel
Save