| @@ 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"> |
|
| @@ 361-369 (lines=9) @@ | ||
| 358 | } |
|
| 359 | ||
| 360 | ||
| 361 | for($i = 0; $i<$loops; $i++) |
|
| 362 | { |
|
| 363 | if(array_key_exists($i, $posts)) |
|
| 364 | { |
|
| 365 | $lastPostId = $posts[$i]['post_id']; |
|
| 366 | ||
| 367 | jodelToHtml($posts[$i], $view, $isDetailedView); |
|
| 368 | } |
|
| 369 | } ?> |
|
| 370 | ||
| 371 | </content> |
|
| 372 | ||