mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-22 06:13:58 -07:00
r466
Фиксы. спасибо Basilevs, Gemini_13 git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@466 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293
This commit is contained in:
parent
67d1922e3a
commit
6ed2d8ffda
4 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
if (!defined('IN_PHPBB')) die(basename(__FILE__));
|
||||
|
||||
global $bb_cfg, $t_data, $poster_id, $is_auth, $dl_link_css, $dl_status_css;
|
||||
global $bb_cfg, $t_data, $poster_id, $is_auth, $dl_link_css, $dl_status_css, $lang, $images;
|
||||
|
||||
$change_peers_bgr_over = true;
|
||||
$bgr_class_1 = 'row1';
|
||||
|
@ -15,7 +15,7 @@ $peers_overflow_div_height = '400px';
|
|||
$peers_div_style_normal = 'padding: 3px;';
|
||||
$peers_div_style_overflow = "padding: 6px; height: $peers_overflow_div_height; overflow: auto; border: 1px inset;";
|
||||
$s_last_seed_date_format = 'Y-m-d';
|
||||
$upload_image = '<img src="images/icon_dn.gif" alt="" border="0" />';
|
||||
$upload_image = '<img src="'. $images['icon_dn'] .'" alt="'. $lang['DL_TORRENT'] .'" border="0" />';
|
||||
|
||||
$peers_cnt = $seed_count = 0;
|
||||
$seeders = $leechers = '';
|
||||
|
|
|
@ -56,8 +56,8 @@ $domain_name = (!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : $do
|
|||
|
||||
// Increase number of revision after update
|
||||
$bb_cfg['tp_version'] = '2.5 Beta';
|
||||
$bb_cfg['tp_release_state'] = 'R465';
|
||||
$bb_cfg['tp_release_date'] = '21-10-2012';
|
||||
$bb_cfg['tp_release_state'] = 'R466';
|
||||
$bb_cfg['tp_release_date'] = '25-10-2012';
|
||||
|
||||
// Database
|
||||
$charset = 'utf8';
|
||||
|
|
|
@ -232,7 +232,7 @@ class report_privmsg extends report_module
|
|||
function _subject_details_prepare(&$message, &$subject, $row)
|
||||
{
|
||||
global $bb_cfg, $userdata, $datastore;
|
||||
include(INC_DIR . "bbcode.php");
|
||||
require_once(INC_DIR . "bbcode.php");
|
||||
|
||||
//
|
||||
// If the board has HTML off but the post has HTML
|
||||
|
|
|
@ -818,7 +818,7 @@ if ($items_display)
|
|||
|
||||
'DL_CONTROLS' => ($dl_search && $dl_user_id_val == $user_id),
|
||||
'DL_ACTION' => 'dl_list.php',
|
||||
'MY_POSTS' => ($my_posts && $user->id == $poster_id_val),
|
||||
'MY_POSTS' => (!$post_mode && $my_posts && $user->id == $poster_id_val),
|
||||
));
|
||||
|
||||
print_page('search_results.tpl');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue