Browse Source

Adds VOLUNTEER_DISCOUNT.

devel
Jonathan Rosenbaum 7 years ago
parent
commit
76b73352dc
  1. 2
      json/transaction.php

2
json/transaction.php

@ -18,6 +18,7 @@ $timezone = TIMEZONE;
$sweat_equity_limit = SWEAT_EQUITY_LIMIT;
$max_bike_earned = MAX_BIKE_EARNED;
$volunteer_hour_value = VOLUNTEER_HOUR_VALUE;
$volunteer_discount = VOLUNTEER_DISCOUNT;
$special_volunteer_hours_qualification = SPECIAL_VOLUNTEER_HOURS_QUALIFICATION;
$special_volunteer_discount = SPECIAL_VOLUNTEER_DISCOUNT;
$stand_time_value = STAND_TIME_VALUE;
@ -149,6 +150,7 @@ $stand_time_value = STAND_TIME_VALUE;
$result3["max_bike_earned"] = $max_bike_earned;
$result3["volunteer_hour_value"] = $volunteer_hour_value;
$result3["sweat_equity_limit"] = $sweat_equity_limit;
$result3["volunteer_discount"] = $volunteer_discount;
$result3["special_volunteer_hours_qualification"] = $special_volunteer_hours_qualification;
$result3["special_volunteer_discount"] = $special_volunteer_discount;
$result3["stand_time_value"] = $stand_time_value;

Loading…
Cancel
Save