Active
Project:
Ubercart Userpoints
Version:
6.x-2.0-beta2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Mar 2010 at 12:01 UTC
Updated:
17 Nov 2011 at 16:53 UTC
Jump to comment: Most recent
Comments
Comment #1
attheshow commentedIf you go into the uc_userpoints_payment.module and change:
To:
It works correctly.
Comment #2
attheshow commentedAlso need to change:
$points = intval((($pointinfo->points) * (-1)));To:
$points = $pointinfo->points;...So that the points are given back to the user instead of subtracted A SECOND TIME. :)
Comment #3
sano commentedthank you.