In qa-page-user this code gets a list of all favorite questions.
// Get lists of favorites for this user
@list($questions, $users, $tags, $categories)=qa_db_select_with_pending(
qa_db_user_favorite_qs_selectspec($userid),
QA_FINAL_EXTERNAL_USERS ? null : qa_db_user_favorite_users_selectspec($userid),
qa_db_user_favorite_tags_selectspec($userid),
qa_db_user_favorite_categories_selectspec($userid)
);
Now I would need that same thing for a full questions list to later filter that for userid and other
Any help is very welcome.