Download -> dl

Переименование скрипта закачки торрентов.
This commit is contained in:
Exile 2014-08-09 10:25:46 +04:00
commit 13e3af62d9
7 changed files with 14 additions and 14 deletions

View file

@ -524,7 +524,7 @@ if ($view == 'attachments')
'S_DELETE_BOX' => $delete_box, 'S_DELETE_BOX' => $delete_box,
'S_HIDDEN' => $hidden_field, 'S_HIDDEN' => $hidden_field,
'U_VIEW_ATTACHMENT' => BB_ROOT . 'download.php?id=' . $attachments[$i]['attach_id'], 'U_VIEW_ATTACHMENT' => BB_ROOT . 'dl.php?id=' . $attachments[$i]['attach_id'],
)); ));
} }

View file

@ -271,14 +271,14 @@ function display_attachments($post_id)
if ($image) if ($image)
{ {
// Images // Images
// NOTE: If you want to use the download.php everytime an image is displayed inlined, replace the // NOTE: If you want to use the dl.php everytime an image is displayed inlined, replace the
// Section between BEGIN and END with (Without the // of course): // Section between BEGIN and END with (Without the // of course):
// $img_source = BB_ROOT . 'download.php?id=' . $attachments['_' . $post_id][$i]['attach_id']; // $img_source = BB_ROOT . 'dl.php?id=' . $attachments['_' . $post_id][$i]['attach_id'];
// $download_link = TRUE; // $download_link = TRUE;
// Check if we can reach the file or if it is stored outside of the webroot // Check if we can reach the file or if it is stored outside of the webroot
if ($attach_config['upload_dir'][0] == '/' || ( $attach_config['upload_dir'][0] != '/' && $attach_config['upload_dir'][1] == ':')) if ($attach_config['upload_dir'][0] == '/' || ( $attach_config['upload_dir'][0] != '/' && $attach_config['upload_dir'][1] == ':'))
{ {
$img_source = BB_ROOT . 'download.php?id=' . $attachments['_' . $post_id][$i]['attach_id']; $img_source = BB_ROOT . 'dl.php?id=' . $attachments['_' . $post_id][$i]['attach_id'];
$download_link = TRUE; $download_link = TRUE;
} }
else else
@ -315,13 +315,13 @@ function display_attachments($post_id)
if ($thumbnail) if ($thumbnail)
{ {
// Images, but display Thumbnail // Images, but display Thumbnail
// NOTE: If you want to use the download.php everytime an thumnmail is displayed inlined, replace the // NOTE: If you want to use the dl.php everytime an thumnmail is displayed inlined, replace the
// Section between BEGIN and END with (Without the // of course): // Section between BEGIN and END with (Without the // of course):
// $thumb_source = BB_ROOT . 'download.php?id=' . $attachments['_' . $post_id][$i]['attach_id'] . '&thumb=1'; // $thumb_source = BB_ROOT . 'dl.php?id=' . $attachments['_' . $post_id][$i]['attach_id'] . '&thumb=1';
// Check if we can reach the file or if it is stored outside of the webroot // Check if we can reach the file or if it is stored outside of the webroot
if ($attach_config['upload_dir'][0] == '/' || ( $attach_config['upload_dir'][0] != '/' && $attach_config['upload_dir'][1] == ':')) if ($attach_config['upload_dir'][0] == '/' || ( $attach_config['upload_dir'][0] != '/' && $attach_config['upload_dir'][1] == ':'))
{ {
$thumb_source = BB_ROOT . 'download.php?id=' . $attachments['_' . $post_id][$i]['attach_id'] . '&thumb=1'; $thumb_source = BB_ROOT . 'dl.php?id=' . $attachments['_' . $post_id][$i]['attach_id'] . '&thumb=1';
} }
else else
{ {
@ -334,7 +334,7 @@ function display_attachments($post_id)
'DOWNLOAD_NAME' => $display_name, 'DOWNLOAD_NAME' => $display_name,
'S_UPLOAD_IMAGE' => $upload_image, 'S_UPLOAD_IMAGE' => $upload_image,
'IMG_SRC' => BB_ROOT . 'download.php?id=' . $attachments['_' . $post_id][$i]['attach_id'], 'IMG_SRC' => BB_ROOT . 'dl.php?id=' . $attachments['_' . $post_id][$i]['attach_id'],
'IMG_THUMB_SRC' => $thumb_source, 'IMG_THUMB_SRC' => $thumb_source,
'FILESIZE' => $filesize, 'FILESIZE' => $filesize,
'COMMENT' => $comment, 'COMMENT' => $comment,
@ -352,7 +352,7 @@ function display_attachments($post_id)
// display attachment // display attachment
$template->assign_block_vars('postrow.attach.attachrow', array( $template->assign_block_vars('postrow.attach.attachrow', array(
'U_DOWNLOAD_LINK' => BB_ROOT . 'download.php?id=' . $attachments['_' . $post_id][$i]['attach_id'], 'U_DOWNLOAD_LINK' => BB_ROOT . 'dl.php?id=' . $attachments['_' . $post_id][$i]['attach_id'],
'S_UPLOAD_IMAGE' => $upload_image, 'S_UPLOAD_IMAGE' => $upload_image,
'DOWNLOAD_NAME' => $display_name, 'DOWNLOAD_NAME' => $display_name,

View file

@ -75,7 +75,7 @@ $tor_auth_del = ($tor_auth && $tor_reged);
$tracker_link = ($tor_reged) ? $lang['BT_REG_YES'] : $lang['BT_REG_NO']; $tracker_link = ($tor_reged) ? $lang['BT_REG_YES'] : $lang['BT_REG_NO'];
$download_link = "download.php?id=$attach_id"; $download_link = "dl.php?id=$attach_id";
$description = ($comment) ? $comment : preg_replace("#.torrent$#i", '', $display_name); $description = ($comment) ? $comment : preg_replace("#.torrent$#i", '', $display_name);
if ($tor_auth_reg || $tor_auth_del) if ($tor_auth_reg || $tor_auth_del)

View file

@ -806,7 +806,7 @@ class attach_parent
} }
else else
{ {
$download_link = BB_ROOT . 'download.php?id=' . $this->attachment_id_list[$i]; $download_link = BB_ROOT . 'dl.php?id=' . $this->attachment_id_list[$i];
} }
$template->assign_block_vars('attach_row', array( $template->assign_block_vars('attach_row', array(

View file

@ -1,7 +1,7 @@
<?php <?php
define('IN_FORUM', true); define('IN_FORUM', true);
define('BB_SCRIPT', 'download'); define('BB_SCRIPT', 'dl');
define('NO_GZIP', true); define('NO_GZIP', true);
define('BB_ROOT', './'); define('BB_ROOT', './');
require(BB_ROOT .'common.php'); require(BB_ROOT .'common.php');

View file

@ -338,7 +338,7 @@ define('PAGE_HEADER', INC_DIR .'page_header.php');
define('PAGE_FOOTER', INC_DIR .'page_footer.php'); define('PAGE_FOOTER', INC_DIR .'page_footer.php');
define('CAT_URL', 'index.php?c='); define('CAT_URL', 'index.php?c=');
define('DOWNLOAD_URL', 'download.php?id='); define('DOWNLOAD_URL', 'dl.php?id=');
define('FORUM_URL', 'viewforum.php?f='); define('FORUM_URL', 'viewforum.php?f=');
define('GROUP_URL', 'groupcp.php?g='); define('GROUP_URL', 'groupcp.php?g=');
define('LOGIN_URL', $bb_cfg['login_url']); define('LOGIN_URL', $bb_cfg['login_url']);

View file

@ -1,5 +1,5 @@
User-agent: * User-agent: *
Disallow: /download.php Disallow: /dl.php
Disallow: /groupcp.php Disallow: /groupcp.php
Disallow: /login.php Disallow: /login.php
Disallow: /memberlist.php Disallow: /memberlist.php