Find this line in bookmarking_post.php
PHP Code:
<?php if (!$h->vars['editorial']) { ?>
<a href='<?php echo $h->post->origUrl; ?>' <?php echo $h->vars['target']; ?> class="click_to_source" rel="nofollow"><?php echo $h->post->title; ?></a>
Replace it with:
PHP Code:
<?php if (!$h->vars['editorial']) {
if ( $h->post->post_votes_up > 5 ) $rel = ''; // Use whatever vote count you want
else $rel = 'rel="nofollow"';
?>
<a href='<?php echo $h->post->origUrl; ?>' <?php echo $h->vars['target']; ?> class="click_to_source" <?php echo $rel ?>><?php echo $h->post->title; ?></a>
Bookmarks