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 604B

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