From 76b73352dc6b8b880de45509a4948349480c84cf Mon Sep 17 00:00:00 2001 From: Jonathan Rosenbaum Date: Wed, 2 Aug 2017 06:18:46 +0000 Subject: [PATCH] Adds VOLUNTEER_DISCOUNT. --- json/transaction.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/json/transaction.php b/json/transaction.php index a85bbeb..a8bc975 100644 --- a/json/transaction.php +++ b/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;