git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@299 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293
This commit is contained in:
pherum83 2011-10-12 18:24:53 +00:00
commit faa09bf5e2
5 changed files with 4 additions and 8 deletions

View file

@ -53,8 +53,8 @@ $bb_cfg = $tr_cfg = $page_cfg = array();
// Increase number of revision after update
$bb_cfg['tp_version'] = '2.1 Stable';
$bb_cfg['tp_release_state'] = 'R298';
$bb_cfg['tp_release_date'] = '02-10-2011';
$bb_cfg['tp_release_state'] = 'R299';
$bb_cfg['tp_release_date'] = '12-10-2011';
// Database
$charset = 'utf8';

View file

@ -1,3 +0,0 @@
<?php
if (!defined('BB_ROOT')) die(basename(__FILE__));

View file

@ -547,7 +547,7 @@ $datastore->enqueue(array(
if(!$bb_cfg['board_startdate'])
{
bb_update_config(array('board_startdate' => TIMENOW));
DB()->query("UPDATE ". BB_USERS ." SET user_regdate = ". TIMENOW ." WHERE user_id IN(2, ". EXCLUDED_USERS_CSV);
DB()->query("UPDATE ". BB_USERS ." SET user_regdate = ". TIMENOW ." WHERE user_id IN(2, ". EXCLUDED_USERS_CSV .")");
}
// Cron

View file

@ -5,7 +5,6 @@
// borz_off@cs.msu.su
//
setlocale(LC_ALL, 'ru_RU.UTF-8');
$lang['CONTENT_ENCODING'] = 'UTF-8';
$lang['CONTENT_DIRECTION'] = 'ltr';
$lang['DATE_FORMAT'] = 'Y-m-d'; //'d.m.Y'; // This should be changed to the default date format for your language, php date() format

View file

@ -585,7 +585,7 @@ else
foreach ($report_subject['details'] as $detail_title => $detail_value)
{
$template->assign_block_vars('report_subject.details', array(
'TITLE' => $report_module->lang[$detail_title],
'TITLE' => $report_module->lang[strtoupper($detail_title)],
'VALUE' => $detail_value)
);
}