--- wishlist.module Fri Nov 23 12:08:21 2007 +++ wishlist.module.bak Fri Nov 23 11:58:21 2007 @@ -1708,35 +1708,4 @@ return $form; } -/** - * Implementation of hook_views_tables(). - */ -function wishlist_views_tables() { - $tables['wishlist'] = array( - 'name' => 'wishlist', - 'join' => array( - 'left' => array( - 'table' => 'node', - 'field' => 'nid' - ), - 'right' => array( - 'field' => 'nid' - ), - ), - 'fields' => array( - 'item_priority' => array( - 'name' => t('Wishlist: Display Priority'), - 'sortable' => TRUE, - ), - ), - 'sorts' => array( - 'item_priority' => array( - 'name' => t('Wishlist: Display Priority'), - 'help' => t('Sort by display prioiry'), - ), - ), - ); - - return $tables; -} ?>