Index: favorite_nodes.module =================================================================== --- favorite_nodes.module (revision 307) +++ favorite_nodes.module (working copy) @@ -587,7 +587,13 @@ } } - return theme('favorite_nodes_view_'. variable_get(FAVORITE_NODES_PAGE_TYPE, 'table'), favorite_nodes_get($uid, $type), $uid, $type); + $fav_row = favorite_nodes_get($uid, $type); + if(empty($fav_row)) { + return ('No Favorites Found'); + } + else { + return theme('favorite_nodes_view_'. variable_get(FAVORITE_NODES_PAGE_TYPE, 'table'), $fav_row, $uid, $type); + } } /**