This is very straightforward, so I marked this RTB.
In favorite_nodes_user()
$favorites = favorite_nodes_get($uid, $type->type, variable_get(FAVORITE_NODES_BLOCK_LIMIT, 5));
needs to be
$favorites = favorite_nodes_get($uid, $type->type, variable_get(FAVORITE_NODES_PAGE_LIMIT, 5));

Otherwise, it will display favorites on the user page as it is configured in the block.

CommentFileSizeAuthor
#1 favorite_nodes.block_.patch902 bytesrares
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

rares’s picture

Title: Select number of entries on page not working » Profile limit does not work (uses block limit value)
FileSize
902 bytes

Here is a patch and a better name

kbahey’s picture

Status: Reviewed & tested by the community » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.