mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 05:48:51 +00:00
Added alternating row color/class for topicrow
git-svn-id: file:///svn/phpbb/trunk@1425 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
74d694afce
commit
ac3757bad0
1 changed files with 6 additions and 0 deletions
|
@ -562,6 +562,10 @@ if( $total_topics )
|
|||
$last_post .= "<a href=\"" . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=" . $topic_rowset[$i]['topic_last_post_id']) . "#" . $topic_rowset[$i]['topic_last_post_id'] . "\"><img src=\"" . $images['icon_latest_reply'] . "\" border=\"0\" alt=\"" . $lang['View_latest_post'] . "\" /></a>";
|
||||
|
||||
$views = $topic_rowset[$i]['topic_views'];
|
||||
|
||||
$row_color = ( !($i%2) ) ? $theme['td_color1'] : $theme['td_color2'];
|
||||
$row_class = ( !($i%2) ) ? $theme['td_class1'] : $theme['td_class2'];
|
||||
|
||||
|
||||
$template->assign_block_vars("topicrow", array(
|
||||
"FORUM_ID" => $forum_id,
|
||||
|
@ -575,6 +579,8 @@ if( $total_topics )
|
|||
"TOPIC_TYPE" => $topic_type,
|
||||
"VIEWS" => $views,
|
||||
"LAST_POST" => $last_post,
|
||||
"ROW_COLOR" => $row_color,
|
||||
"ROW_CLASS" => $row_class,
|
||||
|
||||
"U_VIEW_TOPIC" => $view_topic_url)
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue