Show
Ignore:
Timestamp:
07/21/08 22:59:54 (4 months ago)
Author:
aarkerio
Message:

Update general

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/app/views/subjects/view.ctp

    r661 r664  
    1313 
    1414foreach($data['Lesson'] as $l): 
    15   echo $html->link('► '.$l['Lesson']['title'], '/lessons/view/'.$l['Lesson']['id']). '<br />'; 
     15  echo $html->link('► '.$l['Lesson']['title'], '/lessons/view/'.$l['User']['username'].'/'.$l['Lesson']['id']). '<br />'; 
    1616endforeach; 
    1717 
     
    2525 
    2626foreach($data['Entry'] as $e): 
    27   echo $html->link('► '.$e['Entry']['title'], '/lessons/view/'.$e['Entry']['id']). '<br />'; 
     27  echo $html->link('► '.$e['Entry']['title'], '/entry/view/'.$e['User']['username'].'/'.$e['Entry']['id']). '<br />'; 
    2828endforeach; 
    2929 
     
    3737 
    3838foreach($data['Share'] as $s): 
    39   echo $html->link('► '.$s['Share']['description'], '/shares/view/'.$s['Share']['secret']). '<br />'; 
     39  echo $html->link('► '.$s['Share']['description'], '/shares/download/'.$s['Share']['secret']). '<br />'; 
    4040endforeach; 
    4141