Show
Ignore:
Timestamp:
07/07/08 18:00:27 (5 months ago)
Author:
aarkerio
Message:

Little fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/elements/podcast.ctp

    r313 r629  
    1 <div class="temas">Podcasts</div> 
    21<?php 
    3 foreach ($blog["Podcast"] as $key => $val)  
    4 { 
    5   echo '<a class="petit" href="/podcasts/show/'.$val['user_id'].'/'. $val['id'] . '">&gt;'. $val['title'] . '</a><br />'; 
    6 } 
     2echo $html->div('temas', 'Podcasts'); 
    73 
     4foreach ($blog["Podcast"] as $val): 
     5  echo $html->link('>&gt;'. $val['title'], '/podcasts/show/'.$val['user_id'].'/'.$val['id'], array('class'=>'petit')) . '<br />'; 
     6endforeach; 
    87 
    9 echo '<p><a class="petit" href="/podcasts/display/'.$val['user_id'].'">View all podcast</a></p>'; 
     8echo $html->para(null, $html->link(__('View all podcast', true), '/podcasts/display/'.$val['user_id'], aa('class', 'petit'))'; 
    109 
    1110?>