Index: trunk/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php |
— | — | @@ -1068,6 +1068,11 @@ |
1069 | 1069 | return; |
1070 | 1070 | } |
1071 | 1071 | |
| 1072 | + // update the utm source to set the payment instrument to pp rather than cc |
| 1073 | + $utm_source_parts = explode( ".", $data[ 'utm_source' ] ); |
| 1074 | + $utm_source_parts[2] = 'pp'; |
| 1075 | + $data[ 'utm_source' ] = implode( ".", $utm_source_parts ); |
| 1076 | + |
1072 | 1077 | /** |
1073 | 1078 | * update contribution tracking |
1074 | 1079 | */ |