Completed
Push — develop ( f1f88a...e6dea5 )
by Mario
06:39 queued 04:03
created
language/en/donate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,9 +61,9 @@
 block discarded – undo
61 61
 	'PPDE_DONORLIST_LAST_DATE'         => 'Made on',
62 62
 	'PPDE_DONORLIST_TOTAL_DONATION'    => 'Donation amount',
63 63
 	'PPDE_DONORS'                      => array(
64
-		0 => '',             // 0 - Used for pagination. Let this language key empty.
65
-		1 => '%d donor',     // 1
66
-		2 => '%d donors',    // 2+
64
+		0 => '', // 0 - Used for pagination. Let this language key empty.
65
+		1 => '%d donor', // 1
66
+		2 => '%d donors', // 2+
67 67
 	),
68 68
 	'PPDE_NO_DONORS'                   => 'No donors',
69 69
 
Please login to merge, or discard this patch.
language/fr/donate.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,9 +61,9 @@
 block discarded – undo
61 61
 	'PPDE_DONORLIST_LAST_DATE'         => 'Effectué le',
62 62
 	'PPDE_DONORLIST_TOTAL_DONATION'    => 'Somme des dons',
63 63
 	'PPDE_DONORS'                      => array(
64
-		0 => '',                  // 0 - Used for pagination. Let this language key empty.
65
-		1 => '%d donateur',       // 1
66
-		2 => '%d donateurs',      // 2+
64
+		0 => '', // 0 - Used for pagination. Let this language key empty.
65
+		1 => '%d donateur', // 1
66
+		2 => '%d donateurs', // 2+
67 67
 	),
68 68
 	'PPDE_NO_DONORS'                   => 'Aucun donateur',
69 69
 
Please login to merge, or discard this patch.
controller/admin_transactions_controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 
157 157
 			// Sorting
158 158
 			$limit_days = array(0 => $this->user->lang['ALL_ENTRIES'], 1 => $this->user->lang['1_DAY'], 7 => $this->user->lang['7_DAYS'], 14 => $this->user->lang['2_WEEKS'], 30 => $this->user->lang['1_MONTH'], 90 => $this->user->lang['3_MONTHS'], 180 => $this->user->lang['6_MONTHS'], 365 => $this->user->lang['1_YEAR']);
159
-			$sort_by_text = array('txn' => $this->user->lang['PPDE_DT_SORT_TXN_ID'], 'u' => $this->user->lang['PPDE_DT_SORT_DONORS'], 'ipn' => $this->user->lang['PPDE_DT_SORT_IPN_STATUS'], 'ipn_test' => $this->user->lang['PPDE_DT_SORT_IPN_TYPE'],'ps' => $this->user->lang['PPDE_DT_SORT_PAYMENT_STATUS'], 't' => $this->user->lang['SORT_DATE']);
159
+			$sort_by_text = array('txn' => $this->user->lang['PPDE_DT_SORT_TXN_ID'], 'u' => $this->user->lang['PPDE_DT_SORT_DONORS'], 'ipn' => $this->user->lang['PPDE_DT_SORT_IPN_STATUS'], 'ipn_test' => $this->user->lang['PPDE_DT_SORT_IPN_TYPE'], 'ps' => $this->user->lang['PPDE_DT_SORT_PAYMENT_STATUS'], 't' => $this->user->lang['SORT_DATE']);
160 160
 			$sort_by_sql = array('txn' => 'txn.txn_id', 'u' => 'u.username_clean', 'ipn' => 'txn.confirmed', 'ipn_test' => 'txn.test_ipn', 'ps' => 'txn.payment_status', 't' => 'txn.payment_date');
161 161
 
162 162
 			$s_limit_days = $s_sort_key = $s_sort_dir = $u_sort_param = '';
Please login to merge, or discard this patch.