Code Duplication    Length = 3-3 lines in 2 locations

Themes/default/MessageIndex.template.php 1 location

@@ 73-75 (lines=3) @@
70
			</div>
71
			<div class="lastpost lpr_border">';
72
73
			if (!empty($board['last_post']['id']))
74
				echo '
75
				<p>', $board['last_post']['last_post_message'], '</p>';
76
77
			echo '
78
			</div>';

Themes/default/BoardIndex.template.php 1 location

@@ 230-232 (lines=3) @@
227
 */
228
function template_bi_board_lastpost($board)
229
{
230
	if (!empty($board['last_post']['id']))
231
		echo '
232
						<p>', $board['last_post']['last_post_message'], '</p>';
233
}
234
235
/**