|
Revision 272, 0.6 kB
(checked in by aarkerio, 10 months ago)
|
|
Update karamelo to 1.2 cake version
|
| Line | |
|---|
| 1 | <div class="title_section"> Podcasts</div> |
|---|
| 2 | <? |
|---|
| 3 | |
|---|
| 4 | //print_r($data); |
|---|
| 5 | |
|---|
| 6 | foreach ($data as $key => $val) { |
|---|
| 7 | echo '<p><b>'.$data[$key]['Podcast']['title'].'</b></p>'; |
|---|
| 8 | echo '<p>'.$data[$key]['Podcast']['description'] . '</p><hr />'; |
|---|
| 9 | //echo '<p><a href="/users/blog/'.$username.'/'.$data[$key]['Podcast']['id'].'">Permalink</a></p><hr />'; |
|---|
| 10 | |
|---|
| 11 | if ($data[$key]['Podcast']['disc'] == 1) //is the comments in this entry actived ? |
|---|
| 12 | { |
|---|
| 13 | echo '<a style="font-size:7pt" href="#" onclick="window.open(\'/', 'comments', 'width=480,height=480,scrollbars=yes\'); return false;">Comments</a></div>'; |
|---|
| 14 | } |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | ?> |
|---|