undo debugging mode in phrase model, a=chris

Chris Pollett [2011-01-10 06:Jan:th]
undo debugging mode in phrase model, a=chris
Filename
models/phrase_model.php
diff --git a/models/phrase_model.php b/models/phrase_model.php
index 7d93ff99c..ea7b21360 100755
--- a/models/phrase_model.php
+++ b/models/phrase_model.php
@@ -339,7 +339,7 @@ class PhraseModel extends Model
             if(is_array($words_array)) {
                 $counts = array_values($words_array);
                 $min_count = min($counts);
-                $threshold = 4000*$min_count;
+                $threshold = 5*$min_count;
                 $word_keys = array();
                 foreach($words_array as $key => $count) {
                     if($count < $threshold) {
ViewGit