Passed
Branch 3.3.x (3f7215)
by Mario
04:22
created
language/en/donate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
  */
81 81
 $lang = array_merge($lang, [
82 82
 	'PPDE_DONORS' => [
83
-		1 => '%d donor',  // 1
83
+		1 => '%d donor', // 1
84 84
 		2 => '%d donors', // 2+
85 85
 	],
86 86
 ]);
Please login to merge, or discard this patch.
language/fr/donate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
  */
81 81
 $lang = array_merge($lang, [
82 82
 	'PPDE_DONORS' => [
83
-		1 => '%d donateur',  // 1
83
+		1 => '%d donateur', // 1
84 84
 		2 => '%d donateurs', // 2+
85 85
 	],
86 86
 ]);
Please login to merge, or discard this patch.
controller/ipn_listener.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -40,16 +40,16 @@
 block discarded – undo
40 40
 	 *
41 41
 	 */
42 42
 	private static $paypal_vars_table = [
43
-		['name' => 'confirmed', 'default' => false],    // Used to check if the payment is confirmed
44
-		['name' => 'exchange_rate', 'default' => ''],   // Exchange rate used if a currency conversion occurred
45
-		['name' => 'mc_currency', 'default' => ''],     // Currency
46
-		['name' => 'mc_gross', 'default' => 0.00],      // Amt received (before fees)
47
-		['name' => 'mc_fee', 'default' => 0.00],        // Amt of fees
48
-		['name' => 'payment_status', 'default' => ''],  // Payment status. e.g.: 'Completed'
43
+		['name' => 'confirmed', 'default' => false], // Used to check if the payment is confirmed
44
+		['name' => 'exchange_rate', 'default' => ''], // Exchange rate used if a currency conversion occurred
45
+		['name' => 'mc_currency', 'default' => ''], // Currency
46
+		['name' => 'mc_gross', 'default' => 0.00], // Amt received (before fees)
47
+		['name' => 'mc_fee', 'default' => 0.00], // Amt of fees
48
+		['name' => 'payment_status', 'default' => ''], // Payment status. e.g.: 'Completed'
49 49
 		['name' => 'settle_amount', 'default' => 0.00], // Amt received after currency conversion (before fees)
50 50
 		['name' => 'settle_currency', 'default' => ''], // Currency of 'settle_amount'
51
-		['name' => 'test_ipn', 'default' => false],     // Used when transaction come from Sandbox platform
52
-		['name' => 'txn_type', 'default' => ''],        // Transaction type - Should be: 'web_accept'
51
+		['name' => 'test_ipn', 'default' => false], // Used when transaction come from Sandbox platform
52
+		['name' => 'txn_type', 'default' => ''], // Transaction type - Should be: 'web_accept'
53 53
 		[// Primary merchant e-mail address
54 54
 		 'name'            => 'business',
55 55
 		 'default'         => '',
Please login to merge, or discard this patch.