From 6870496053b9ae9df362b709427f0ad3bbcf2863 Mon Sep 17 00:00:00 2001 From: nanosimbiot Date: Wed, 17 Aug 2011 01:52:52 +0000 Subject: [PATCH] r226 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit не там :-) git-svn-id: https://torrentpier2.googlecode.com/svn/trunk@226 a8ac35ab-4ca4-ca47-4c2d-a49a94f06293 --- upload/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload/index.php b/upload/index.php index eab9b4fb1..29002357c 100644 --- a/upload/index.php +++ b/upload/index.php @@ -344,7 +344,7 @@ if ($bb_cfg['birthday']['check_day'] && $bb_cfg['birthday']['enabled']) { foreach($stats['birthday_week_list'] as $week) { - $week_list[] = ''. $week['username'] .' ('. birthday_age($week['age'], 1) .')'; + $week_list[] = ''. $week['username'] .' ('. birthday_age($week['age']) .')'; } $week_list = join(', ', $week_list); $week_list = sprintf($lang['BIRTHDAY_WEEK'], $bb_cfg['birthday']['check_day'], $week_list); @@ -355,7 +355,7 @@ if ($bb_cfg['birthday']['check_day'] && $bb_cfg['birthday']['enabled']) { foreach($stats['birthday_today_list'] as $today) { - $today_list[] = ''. $today['username'] .' ('. birthday_age($today['age']) .')'; + $today_list[] = ''. $today['username'] .' ('. birthday_age($today['age'], 1) .')'; } $today_list = join(', ', $today_list); $today_list = $lang['BIRTHDAY_TODAY'] . $today_list;