BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

takeedit.php 817B

1234567891011121314151617181920212223
  1. <?php
  2. # Line 58
  3. $Properties['Container'] = (isset($_POST['container']) && $_POST['container'] !== '---') ? $_POST['container'] : 'Other';
  4. $Properties['Archive'] = (isset($_POST['archive']) && $_POST['archive'] !== '---') ? $_POST['archive'] : 'None';
  5. # Line 59
  6. # Line 294
  7. //******************************************************************************//
  8. //--------------- Autofill format and archive ----------------------------------//
  9. # Load FileList in lieu of $Tor object
  10. # todo: Format the output for $Validate->ParseExtensions()
  11. #var_dump($T['FileList']);
  12. # Disable the extension parser for edits
  13. # todo: Make this work with $T['FileList']
  14. if ($T['Container'] === 'Autofill'
  15. || $T['Archive'] === 'Autofill') {
  16. $Err = "Extension parsing is only possible for new uploads";
  17. error($Err);
  18. }
  19. # Line 307