Changeset 462 for trunk/app/views/forums/display.ctp
- Timestamp:
- 05/08/08 12:22:20 (8 months ago)
- Files:
-
- 1 modified
-
trunk/app/views/forums/display.ctp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/app/views/forums/display.ctp
r461 r462 1 1 <?php 2 2 //die(debug($data)); 3 echo $html->para(null, 4 'Foro: '.$html->link($data["Catforum"]["title"], 5 ' /catforums/display/'.$blog["User"]["username"].'/'.$blog["User"]["id"].'/'.$data["Catforum"]["id"] 6 ) 7 ); 3 echo $html->div(null, 'Category: ' . $data['Catforum']['title'], array('style'=>'font-weight:bold;')); 8 4 9 5 echo $html->div('titentry', $data["Forum"]["title"]); 10 6 echo $html->para(null, $data["Forum"]["description"]); 11 7 12 $tmp = $ajax->link($html->image("static/new_post.gif", array("alt"=>"New Topic", "title"=>"New Topic")), '/topics/add/'.$data['Vclassroom']['id'].'/'.$data['Forum']['id'], 8 $tmp = $ajax->link($html->image("static/new_post.gif", array("alt"=>"New Topic", "title"=>"New Topic")), 9 '/topics/add/'.$data['Forum']['vclassroom_id'].'/'.$data['Forum']['id'], 13 10 array("update" => "qn", 14 11 "loading"=>"Element.show('loading3');", … … 41 38 count($val['Reply']), 42 39 $val["User"]["username"], 43 $val['views'],40 count($val['Visitor']), 44 41 '<span style="font-size:6pt">'.$time->timeAgoInWords($val["created"]) .'</span>' 45 42 );
