Passed
Push — develop ( 72ec09...1c079c )
by Greg
15:28 queued 05:03
created
app/Http/RequestHandlers/ExportGedcomPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 
59 59
         // Force a ".ged" suffix
60 60
         if (strtolower(pathinfo($filename, PATHINFO_EXTENSION)) === 'ged') {
61
-            $download_filename  = substr($filename, 0, -4);
61
+            $download_filename = substr($filename, 0, -4);
62 62
         } else {
63 63
             $download_filename = $filename;
64 64
         }
Please login to merge, or discard this patch.
app/Services/GedcomExportService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
         return $this->response_factory->createResponse()
158 158
             ->withBody($stream)
159 159
             ->withHeader('content-type', 'application/zip')
160
-            ->withHeader('content-disposition', 'attachment; filename="' . addcslashes($filename, '"')  . $extension . '"');
160
+            ->withHeader('content-disposition', 'attachment; filename="' . addcslashes($filename, '"') . $extension . '"');
161 161
     }
162 162
 
163 163
     /**
Please login to merge, or discard this patch.