| @@ 93-100 (lines=8) @@ | ||
| 90 | ?> |
|
| 91 | <div class="nextPosts"> |
|
| 92 | <?php |
|
| 93 | for($i = 0; $i<$loops; $i++) |
|
| 94 | { |
|
| 95 | if(isset($posts[$i])) |
|
| 96 | { |
|
| 97 | $lastPostId = $posts[$i]['post_id']; |
|
| 98 | jodelToHtml($posts[$i], $view); |
|
| 99 | } |
|
| 100 | } |
|
| 101 | ?> |
|
| 102 | </div> |
|
| 103 | <div class="lastPostId"> |
|
| @@ 281-290 (lines=10) @@ | ||
| 278 | } |
|
| 279 | ||
| 280 | ||
| 281 | for($i = 0; $i<$loops; $i++) |
|
| 282 | { |
|
| 283 | ||
| 284 | if(isset($posts[$i])) |
|
| 285 | { |
|
| 286 | $lastPostId = $posts[$i]['post_id']; |
|
| 287 | ||
| 288 | jodelToHtml($posts[$i], $view, $isDetailedView); |
|
| 289 | } |
|
| 290 | } ?> |
|
| 291 | ||
| 292 | </content> |
|
| 293 | ||