| @@ 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"> |
|
| @@ 290-299 (lines=10) @@ | ||
| 287 | } |
|
| 288 | ||
| 289 | ||
| 290 | for($i = 0; $i<$loops; $i++) |
|
| 291 | { |
|
| 292 | ||
| 293 | if(isset($posts[$i])) |
|
| 294 | { |
|
| 295 | $lastPostId = $posts[$i]['post_id']; |
|
| 296 | ||
| 297 | jodelToHtml($posts[$i], $view, $isDetailedView); |
|
| 298 | } |
|
| 299 | } ?> |
|
| 300 | ||
| 301 | </content> |
|
| 302 | ||