Changeset 664 for trunk/app/views/subjects/view.ctp
- Timestamp:
- 07/21/08 22:59:54 (4 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/subjects/view.ctp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/subjects/view.ctp
r661 r664 13 13 14 14 foreach($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 />'; 16 16 endforeach; 17 17 … … 25 25 26 26 foreach($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 />'; 28 28 endforeach; 29 29 … … 37 37 38 38 foreach($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 />'; 40 40 endforeach; 41 41
