torrentpier/library/includes/datastore/build_attach_extensions.php
Roman Kelesidis 6660bf26e4
Fixed extensions issue (#1218)
* Fixed extensions issue

* Update CHANGELOG.md
2023-12-18 16:24:23 +07:00

22 lines
671 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* TorrentPier Bull-powered BitTorrent tracker engine
*
* @copyright Copyright (c) 2005-2024 TorrentPier (https://torrentpier.com)
* @link https://github.com/torrentpier/torrentpier for the canonical source repository
* @license https://github.com/torrentpier/torrentpier/blob/master/LICENSE MIT License
*/
if (!defined('BB_ROOT')) {
die(basename(__FILE__));
}
$extensions = DB()->fetch_rowset("
SELECT e.extension, g.cat_id, g.download_mode, g.upload_icon, g.allow_group FROM
" . BB_EXTENSIONS . " e,
" . BB_EXTENSION_GROUPS . " g
WHERE e.group_id = g.group_id
");
$this->store('attach_extensions', $extensions);