mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 00:40:56 +02:00
Changed joined_date to use create_date
git-svn-id: file:///svn/phpbb/trunk@235 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@ -129,7 +129,7 @@ for($x = 0; $x < $total_posts; $x++)
|
|||||||
$post_date = create_date($date_format, $postrow[$x]["post_time"], $sys_timezone);
|
$post_date = create_date($date_format, $postrow[$x]["post_time"], $sys_timezone);
|
||||||
$poster_posts = $postrow[$x]["user_posts"];
|
$poster_posts = $postrow[$x]["user_posts"];
|
||||||
$poster_from = ($postrow[$x]["user_from"]) ? "$l_from: ".$postrow[$x]["user_from"] : "";
|
$poster_from = ($postrow[$x]["user_from"]) ? "$l_from: ".$postrow[$x]["user_from"] : "";
|
||||||
$poster_joined = $postrow[$x]["user_regdate"];
|
$poster_joined = create_date($date_format, $postrow[$x]["user_regdate"], $sys_timezone);
|
||||||
if($poster_id != ANONYMOUS && $poster_id != DELETED)
|
if($poster_id != ANONYMOUS && $poster_id != DELETED)
|
||||||
{
|
{
|
||||||
if(!$postrow[$x]["rank_title"])
|
if(!$postrow[$x]["rank_title"])
|
||||||
@ -210,7 +210,7 @@ for($x = 0; $x < $total_posts; $x++)
|
|||||||
|
|
||||||
if(!($x % 2))
|
if(!($x % 2))
|
||||||
{
|
{
|
||||||
if(isset($theme))
|
if(isset($theme['td_color1']))
|
||||||
{
|
{
|
||||||
$color = "#".$theme['td_color1'];
|
$color = "#".$theme['td_color1'];
|
||||||
}
|
}
|
||||||
@ -221,7 +221,7 @@ for($x = 0; $x < $total_posts; $x++)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if(isset($theme))
|
if(isset($theme['td_color2']))
|
||||||
{
|
{
|
||||||
$color = "#".$theme['td_color2'];
|
$color = "#".$theme['td_color2'];
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user