mirror of
https://github.com/torrentpier/torrentpier-lts.git
synced 2025-02-28 15:10:54 +03:00
13 lines
320 B
PHP
13 lines
320 B
PHP
<?php
|
|
|
|
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);
|