diff options
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 964a9cdd4..889e0c4de 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1468,7 +1468,7 @@ function theme_comment_threshold($threshold) { $result = db_query('SELECT fid, filter FROM {moderation_filters} '); $options .= ' <option value="0">'. t('-- threshold --') .'</option>'; while ($filter = db_fetch_object($result)) { - $filters .= " <option value=\"$filter->fid\"". ($threshold == $filter->fid ? ' selected="selected"' : '') .'>'. t($filter->filter) .'</option>'; + $filters .= " <option value=\"$filter->fid\"". ($threshold == $filter->fid ? ' selected="selected"' : '') .'>'. $filter->filter .'</option>'; } if ($filters) { |