Changeset 152 for trunk/app/views/elements
- Timestamp:
- 09/25/07 15:21:29 (15 months ago)
- Location:
- trunk/app/views/elements
- Files:
-
- 2 modified
-
catfaqs.thtml (modified) (1 diff)
-
lesson.thtml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/elements/catfaqs.thtml
r151 r152 5 5 foreach ($blog["Catfaq"] as $val) 6 6 { 7 echo '<a class="petit" href="/catfaqs/ show/'.$val['user_id'].'/'. $val['id'] . '">>'. $val['title'] . '</a><br />';7 echo '<a class="petit" href="/catfaqs/view/'.$val['id'].'/'. $val['user_id'] . '">>'. $val['title'] . '</a><br />'; 8 8 } 9 9 10 echo '<p><a class="petit" href="/catfaqs/ all/'.$val['user_id'].'">View all FAQs</a></p>';10 echo '<p><a class="petit" href="/catfaqs/display/'.$blog['User']['username'].'/'.$val['user_id'].'">View all FAQs</a></p>'; 11 11 12 12 ?> -
trunk/app/views/elements/lesson.thtml
r151 r152 5 5 foreach ($blog["Lesson"] as $key => $val) 6 6 { 7 echo $html->link($val['title'], '/lessons/ show/'.$blog["User"]["username"].'/'.$val['id'], array("class"=>"petit")) . '<br />';7 echo $html->link($val['title'], '/lessons/view/'.$blog["User"]["username"].'/'.$val['id'], array("class"=>"petit")) . '<br />'; 8 8 } 9 9
