| @@ 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"> |
|
| @@ 338-346 (lines=9) @@ | ||
| 335 | } |
|
| 336 | ||
| 337 | ||
| 338 | for($i = 0; $i<$loops; $i++) |
|
| 339 | { |
|
| 340 | if(array_key_exists($i, $posts)) |
|
| 341 | { |
|
| 342 | $lastPostId = $posts[$i]['post_id']; |
|
| 343 | ||
| 344 | jodelToHtml($posts[$i], $view, $isDetailedView); |
|
| 345 | } |
|
| 346 | } ?> |
|
| 347 | ||
| 348 | </content> |
|
| 349 | ||