фикс Бета-тестер или не зря их держем (: git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@351 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293
This commit is contained in:
nanosimbiot 2012-02-02 03:57:20 +00:00
commit ab5b86e9d0
3 changed files with 15 additions and 16 deletions

View file

@ -3,8 +3,8 @@
// ACP Header - START // ACP Header - START
if (!empty($setmodules)) if (!empty($setmodules))
{ {
$module['General']['Configuration'] = basename(__FILE__) .'?mode=config';; $module['General']['Configuration'] = basename(__FILE__) .'?mode=config';
$module['Mods']['Configuration'] = basename(__FILE__) .'?mode=config_mods';; $module['Mods']['Configuration'] = basename(__FILE__) .'?mode=config_mods';
return; return;
} }
require('./pagestart.php'); require('./pagestart.php');
@ -160,4 +160,3 @@ switch($mode)
} }
print_page('admin_board.tpl', 'admin'); print_page('admin_board.tpl', 'admin');

View file

@ -63,7 +63,7 @@ $bb_cfg = $tr_cfg = $page_cfg = array();
// Increase number of revision after update // Increase number of revision after update
$bb_cfg['tp_version'] = '2.4 (beta)'; $bb_cfg['tp_version'] = '2.4 (beta)';
$bb_cfg['tp_release_state'] = 'R350'; $bb_cfg['tp_release_state'] = 'R351';
$bb_cfg['tp_release_date'] = '02-02-2012'; $bb_cfg['tp_release_date'] = '02-02-2012';
// Database // Database

View file

@ -474,7 +474,7 @@ switch ($mode)
do do
{ {
$user_id_sql .= (($user_id_sql != '') ? ', ' : '') . intval($row['poster_id']); $user_id_sql .= (($user_id_sql != '') ? ', ' : '') . intval($row['poster_id']);
$post_id_sql .= (($post_id_sql != '') ? ', ' : '') . intval($row['post_id']);; $post_id_sql .= (($post_id_sql != '') ? ', ' : '') . intval($row['post_id']);
} }
while ($row = DB()->sql_fetchrow($result)); while ($row = DB()->sql_fetchrow($result));