Changeset 64 for trunk/lib

Show
Ignore:
Timestamp:
12/23/05 09:56:18 (3 years ago)
Author:
fabien
Message:

day 23 modifications

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/model/QuestionTagPeer.php

    r55 r64  
    163163        INNER JOIN '.QuestionTagPeer::TABLE_NAME.' AS t2 ON t1.question_id = t2.question_id 
    164164        WHERE t2.normalized_tag = ? AND t1.normalized_tag != ? 
    165         AND count < 5 
    166165      '; 
    167166    } 
     
    169168    $query .= ' 
    170169      GROUP BY t1.normalized_tag 
     170      HAVING count < 5 
    171171      ORDER BY count ASC 
    172172    '; 
  • trunk/lib/myTools.class.php

    r58 r64  
    3838      } 
    3939 
     40      // stem word (stemming is specific for each language) 
    4041      $stemmed_words[] = PorterStemmer::stem($word, true); 
    4142    }