[dw-free] Allow buying icons with points
[commit: http://hg.dwscoalition.org/dw-free/rev/01da0e97eb7d]
Allow buying icons with points
I forgot how the shop works. You set the cost of both and then it tries to
fulfill one or the other. Weird.
Patch by
mark.
Files modified:
Allow buying icons with points
I forgot how the shop works. You set the cost of both and then it tries to
fulfill one or the other. Weird.
Patch by
![[staff profile]](https://www.dreamwidth.org/img/silk/identity/user_staff.png)
Files modified:
- cgi-bin/DW/Shop/Item/Icons.pm
-------------------------------------------------------------------------------- diff -r 34e6dc9eadc4 -r 01da0e97eb7d cgi-bin/DW/Shop/Item/Icons.pm --- a/cgi-bin/DW/Shop/Item/Icons.pm Sun Jul 22 09:10:31 2012 +0000 +++ b/cgi-bin/DW/Shop/Item/Icons.pm Sun Jul 22 09:22:37 2012 +0000 @@ -49,7 +49,7 @@ # Set up our initial cost structure $self->{cost_cash} = $self->{icons}; - $self->{cost_points} = 0; + $self->{cost_points} = $self->{icons} * 10; # for now, we can only apply to a user. in the future this is an obvious way # to do gift certificates by allowing an email address here... --------------------------------------------------------------------------------