Completed
Push — release-2.1 ( 8104e4...4ddcf6 )
by Mathias
07:39
created
Sources/News.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2169,7 +2169,7 @@
 block discarded – undo
2169 2169
 			{
2170 2170
 				uasort($loaded_attachments, function($a, $b) {
2171 2171
 					if ($a['filesize'] == $b['filesize'])
2172
-					        return 0;
2172
+							return 0;
2173 2173
 					return ($a['filesize'] < $b['filesize']) ? -1 : 1;
2174 2174
 				});
2175 2175
 			}
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2167,7 +2167,8 @@
 block discarded – undo
2167 2167
 			// Sort the attachments by size to make things easier below
2168 2168
 			if (!empty($loaded_attachments))
2169 2169
 			{
2170
-				uasort($loaded_attachments, function($a, $b) {
2170
+				uasort($loaded_attachments, function($a, $b)
2171
+				{
2171 2172
 					if ($a['filesize'] == $b['filesize'])
2172 2173
 					        return 0;
2173 2174
 					return ($a['filesize'] < $b['filesize']) ? -1 : 1;
Please login to merge, or discard this patch.