@@ 84-91 (lines=8) @@ | ||
81 | ?> |
|
82 | <div class="nextPosts"> |
|
83 | <?php |
|
84 | for($i = 0; $i<$loops; $i++) |
|
85 | { |
|
86 | if(isset($posts[$i])) |
|
87 | { |
|
88 | $lastPostId = $posts[$i]['post_id']; |
|
89 | jodelToHtml($posts[$i], $view); |
|
90 | } |
|
91 | } |
|
92 | ?> |
|
93 | </div> |
|
94 | <div class="lastPostId"> |
@@ 337-345 (lines=9) @@ | ||
334 | } |
|
335 | ||
336 | ||
337 | for($i = 0; $i<$loops; $i++) |
|
338 | { |
|
339 | if(array_key_exists($i, $posts)) |
|
340 | { |
|
341 | $lastPostId = $posts[$i]['post_id']; |
|
342 | ||
343 | jodelToHtml($posts[$i], $view, $isDetailedView); |
|
344 | } |
|
345 | } ?> |
|
346 | ||
347 | </content> |
|
348 |