Completed
Pull Request — develop (#22)
by Mario
02:37
created
entity/main.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -357,9 +357,9 @@
 block discarded – undo
357 357
 	/**
358 358
 	 * Use query limit if requested
359 359
 	 *
360
-	 * @param $sql
361
-	 * @param $limit
362
-	 * @param $offset
360
+	 * @param string $sql
361
+	 * @param integer $limit
362
+	 * @param integer $offset
363 363
 	 *
364 364
 	 * @return mixed
365 365
 	 * @access private
Please login to merge, or discard this patch.
operators/transactions.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -141,9 +141,9 @@
 block discarded – undo
141 141
 	/**
142 142
 	 * Returns the SQL Query for displaying simple transactions details
143 143
 	 *
144
-	 * @param $keywords
145
-	 * @param $sort_by
146
-	 * @param $log_time
144
+	 * @param string $keywords
145
+	 * @param string $sort_by
146
+	 * @param integer $log_time
147 147
 	 *
148 148
 	 * @return array
149 149
 	 * @access public
Please login to merge, or discard this patch.
controller/main_controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -213,7 +213,7 @@
 block discarded – undo
213 213
 				'PPDE_DONOR_USERNAME'       => get_username_string('full', $data['user_id'], $data['username'], $data['user_colour']),
214 214
 				'PPDE_LAST_DONATED_AMOUNT'  => $this->get_amount(number_format($last_donation_data[0]['mc_gross'], 2), $default_currency_data[0]['currency_symbol'], (bool) $default_currency_data[0]['currency_on_left']),
215 215
 				'PPDE_LAST_PAYMENT_DATE'    => $this->user->format_date($last_donation_data[0]['payment_date']),
216
-				'PPDE_TOTAL_DONATED_AMOUNT' => $this->get_amount(number_format($data['amount'],2), $default_currency_data[0]['currency_symbol'], (bool) $default_currency_data[0]['currency_on_left']),
216
+				'PPDE_TOTAL_DONATED_AMOUNT' => $this->get_amount(number_format($data['amount'], 2), $default_currency_data[0]['currency_symbol'], (bool) $default_currency_data[0]['currency_on_left']),
217 217
 			));
218 218
 		}
219 219
 
Please login to merge, or discard this patch.
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 - Let this language key empty.
65
-		1 => '%d donor',     // 1
66
-		2 => '%d donors',    // 2+
64
+		0 => '', // 0 - 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'      => 'Éffectué le',
62 62
 	'PPDE_DONORLIST_TOTAL_DONATION' => 'Somme des dons',
63 63
 	'PPDE_DONORS'                   => array(
64
-		0 => '',                  // 0 - Let this language key empty.
65
-		1 => '%d donateur',       // 1
66
-		2 => '%d donateurs',      // 2+
64
+		0 => '', // 0 - 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.