Browse Source

Handle autofill option in config.php

pjc 6 years ago
parent
commit
c4aaf414e1
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      classes/torrent_form.class.php

+ 4
- 4
classes/torrent_form.class.php View File

@@ -545,7 +545,7 @@ class TorrentForm
545 545
     </td>
546 546
     <td>
547 547
       <select name="container">
548
-        <option value="Autofill">Autofill</option>
548
+      <option value="">---</option>
549 549
         <?php
550 550
           foreach ($this->Containers as $Name => $Container) {
551 551
               echo "<option value='$Name'>$Name</option>\n";
@@ -563,7 +563,7 @@ class TorrentForm
563 563
     </td>
564 564
     <td>
565 565
       <select id="container" name="container">
566
-        <option value="Autofill">Autofill</option>
566
+      <option value="">---</option>
567 567
         <?php
568 568
           foreach ($this->ContainersGames as $Name => $Container) {
569 569
               echo "<option value='$Name'>$Name</option>\n";
@@ -581,7 +581,7 @@ class TorrentForm
581 581
     </td>
582 582
     <td>
583 583
       <select id="container" name="container">
584
-        <option value="Autofill">Autofill</option>
584
+      <option value="">---</option>
585 585
         <?php
586 586
           foreach ($this->ContainersProt as $Name => $Container) {
587 587
               echo "<option value='$Name'>$Name</option>\n";
@@ -599,7 +599,7 @@ class TorrentForm
599 599
     </td>
600 600
     <td>
601 601
       <select name='archive'>
602
-        <option value="Autofill">Autofill</option>
602
+      <option value="">---</option>
603 603
         <?php
604 604
           foreach ($this->Archives as $Name => $Archive) {
605 605
               echo "\t\t\t\t\t\t<option value=\"$Name\"";

Loading…
Cancel
Save