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.

torrent_form.class.php 632B

1234567891011121314151617181920212223
  1. <!-- ... -->
  2. <p style="text-align: center;">
  3. <?php
  4. $Announces = ANNOUNCE_URLS[0];
  5. #$Announces = call_user_func_array('array_merge', ANNOUNCE_URLS);
  6. foreach ($Announces as $Announce) {
  7. # Loop through tracker URLs
  8. ?>
  9. <strong>Announce</strong>
  10. <input type="text"
  11. value="<?= $Announce . '/' . G::$LoggedUser['torrent_pass'] . '/announce' ?>"
  12. size="74" onclick="this.select();" readonly="readonly" /> <br />
  13. <?php
  14. }
  15. ?>
  16. <strong>Source</strong>
  17. <input type="text" value="<?= Users::get_upload_sources()[0] ?>"
  18. size="20" onclick="this.select();" readonly="readonly" />
  19. </p>
  20. <!-- ... -->