diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-27 20:40:12 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-10-27 20:40:12 +0000 |
commit | 4bf8c2fff97a5f68a53d81ed4eed0005ac4f422c (patch) | |
tree | 6afd47fcf9d7982ab6fcf3b2ea6afb329903a64c | |
parent | b9e269b5952e21c0e88d3abb3f3a0ca803d387be (diff) | |
download | semanticscuttle-4bf8c2fff97a5f68a53d81ed4eed0005ac4f422c.tar.gz semanticscuttle-4bf8c2fff97a5f68a53d81ed4eed0005ac4f422c.tar.bz2 |
search engines should not follow voting links (not that they are visible to them)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@441 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | data/templates/bookmarks-vote.inc.tpl.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/bookmarks-vote.inc.tpl.php b/data/templates/bookmarks-vote.inc.tpl.php index 5884284..5979827 100644 --- a/data/templates/bookmarks-vote.inc.tpl.php +++ b/data/templates/bookmarks-vote.inc.tpl.php @@ -16,7 +16,7 @@ if (isset($row['hasVoted']) && !$row['hasVoted']) { echo '<span class="' . $classes . '">'; if (isset($row['hasVoted']) && !$row['hasVoted']) { - echo '<a class="vote-for" href="' + echo '<a class="vote-for" rel="nofollow" href="' . createVoteURL(true, $row['bId']) . '">+</a>'; } else { echo '<span class="vote-for-inactive">+</span>'; @@ -25,7 +25,7 @@ if (isset($row['hasVoted']) && !$row['hasVoted']) { echo '<span class="voting">' . $row['bVoting'] . '</span>'; if (isset($row['hasVoted']) && !$row['hasVoted']) { - echo '<a class="vote-against" href="' + echo '<a class="vote-against" rel="nofollow" href="' . createVoteURL(false, $row['bId']) . '">-</a>'; } else { echo '<span class="vote-against-inactive">-</span>'; |