Changeset 32

Show
Ignore:
Timestamp:
12/12/05 21:08:30 (3 years ago)
Author:
fabien
Message:

fixed errors in day 13

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/frontend/modules/sidebar/templates/questionSuccess.php

    r31 r32  
     1<?php use_helper('Javascript') ?> 
     2 
    13<?php echo link_to('ask a new question', 'question/new') ?> 
    2   
     4 
    35<ul> 
    46  <li><?php echo link_to('popular questions', 'question/list') ?> 
     
    68  <li><?php echo link_to('latest answers', 'answer/recent') ?></li> 
    79</ul> 
    8   
     10 
    911<h2>question tags</h2> 
    10   
    11 <div id="question_tags"> 
     12 
     13<ul id="question_tags"> 
    1214  <?php echo include_partial('tag/question_tags', array('question' => $question, 'tags' => $question->getTags())) ?>  
    13 </div
     15</ul
  • trunk/frontend/modules/tag/templates/_question_tags.php

    r31 r32  
    1 <ul> 
    21<?php foreach($tags as $tag): ?> 
    32  <li><?php echo link_to($tag, '@tag?tag='.$tag, 'rel=tag') ?></li> 
    43<?php endforeach ?> 
    5 </ul>