Show
Ignore:
Timestamp:
03/25/08 01:03:27 (10 months ago)
Author:
aarkerio
Message:

eCourses fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/lessons/display.ctp

    r312 r342  
    44//die(print_r($data)); 
    55 
     6if ( count($data) < 1 ) 
     7{ 
     8      echo $html->div(null, 'This teacher has not yet published lessons'); 
     9} 
     10 
    611foreach ($data as $v)  
    712{ 
    8   echo '<p><a class="title" href="/lessons/view/'.$blog['User']['username'].'/'.$v['Lesson']['id'].'">' . $v['Lesson']['title'] . '</a></p>'; 
    9   } 
     13  echo $html->para(null, $hrml->link($v['Lesson']['title'], '/lessons/view/'.$blog['User']['username'].'/'.$v['Lesson']['id'], array("class"=>"title"))); 
     14} 
    1015?>