Hi

Thanks for this module, i set everything in my config administration, when i click some nodes to be bookmarked, i receive only this message

This content can't be bookmarked...

Comments

AzMoDaN’s picture

Same error message here.

axel’s picture

Funny typo. Fix here:

--- click2bookmark.module       2007-04-12 11:20:59 +0000
+++ click2bookmark.module       2007-04-12 11:27:25 +0000
@@ -78,7 +78,7 @@
     drupal_set_message(t('This content can\'t be bookmarked...'));
     return false;
   }
-  if (variable_get(CLICK2BOOKMARK_NODE_TYPE . $node->type, 0)) {
+  if (!variable_get(CLICK2BOOKMARK_NODE_TYPE . $node->type, 0)) {
     drupal_set_message(t('This content can\'t be bookmarked...'));
     return false;
   }
@@ -266,4 +266,4 @@
   };
   return theme_links($links, array('class' => 'click2bookmark-block-links'));

-}
\ No newline at end of file
+}
axel’s picture

Status: Active » Needs review
freeman-1’s picture

Hi,
Have installed Axel's change, and issue seems resolved.

ericdes’s picture

Title: This content can't be bookmarked » Patch applied in released dated 2007-04-24.
Status: Needs review » Fixed

Applied Axel's patch in release dated 2007-04-24.

Anonymous’s picture

Status: Fixed » Closed (fixed)