fixed Typo in Subscription Sku prevented karma from being transferred to users.

This commit is contained in:
Colin Kuskie 2010-02-15 10:20:10 -08:00
parent 40514a2533
commit be4377f48c
2 changed files with 2 additions and 1 deletions

View file

@ -17,6 +17,7 @@
- fixed #11406: AdSku table mssing karma column - fixed #11406: AdSku table mssing karma column
- fixed #11410: Too much errors in log after fix #11346 - fixed #11410: Too much errors in log after fix #11346
- fixed #11169: MapPoint asset does not have an icon - fixed #11169: MapPoint asset does not have an icon
- fixed Typo in Subscription Sku prevented karma from being transferred to users.
7.8.11 7.8.11
- fixed #11362: Unable to checkout with ITransact plugin - fixed #11362: Unable to checkout with ITransact plugin

View file

@ -75,7 +75,7 @@ sub apply {
} }
# Add karma to the user's account # Add karma to the user's account
if ($session->setting->get('userKarma')) { if ($session->setting->get('useKarma')) {
WebGUI::User->new($session,$userId)->karma($self->get('karma'), 'Subscription', 'Added for purchasing subscription '.$self->get('title')); WebGUI::User->new($session,$userId)->karma($self->get('karma'), 'Subscription', 'Added for purchasing subscription '.$self->get('title'));
} }