Closed (fixed)
Project:
User Points
Version:
5.x-3.x-dev
Component:
Code: userpoints API
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Jun 2008 at 11:08 UTC
Updated:
20 Jun 2008 at 13:52 UTC
This function causes problems on the basic views, as the default_tid is never returned:-
function userpoints_get_default_tid() {
variable_get(USERPOINTS_CATEGORY_DEFAULT_TID, NULL);
}
This fixes it :-
function userpoints_get_default_tid() {
return variable_get(USERPOINTS_CATEGORY_DEFAULT_TID, NULL);
}
Comments
Comment #1
kbahey commentedFixed in 5.x-3.x-dev. Should be in the download tarball in 24 hours.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.