--- favorite_nodes1.module	2008-03-14 16:27:27.000000000 +0100
+++ favorite_nodes.module	2008-06-24 13:06:23.000000000 +0200
@@ -552,6 +552,12 @@ function favorite_nodes_views_tables() {
         'sortable' => FALSE,
         'notafield' => TRUE,
       ),
+      'remove' => array(
+        'name' => t('Remove from Favourites'),
+        'handler' => 'favouite_nodes_handler_remove_link',
+        'help' => t('A link which allows the user to remove the favourite'),
+        'sortable' => FALSE,
+      )
     ),
     'sorts' => array(
       'last' => array(
@@ -648,3 +654,6 @@ function favorite_nodes_handler_user_cou
   return db_result(db_query("SELECT COUNT(*) FROM {favorite_nodes} WHERE nid = %d", $data->nid));
 }
 
+function favouite_nodes_handler_remove_link($fieldinfo, $fielddata, $value, $data) {
+  return l(t('remove from favorites'), 'favorite_nodes/delete/'. $data->nid);
+}
