Completed
Pull Request — master (#13)
by
unknown
01:11
created
models/UserImportModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             if ($pathinfo['filename'] == $username) {
72 72
                 $newFile = new File();
73 73
                 $newFile->is_public = $this->imagePublic;
74
-                $newFile->fromFile(storage_path('app/media' . $file->path));
74
+                $newFile->fromFile(storage_path('app/media'.$file->path));
75 75
 
76 76
                 return $newFile;
77 77
             }
Please login to merge, or discard this patch.
controllers/UserImportExport.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function __construct()
16 16
     {
17 17
         $custom_config = SettingsModel::get('controller_config_override', null);
18
-        if($custom_config){
18
+        if ($custom_config) {
19 19
             $this->importExportConfig = $custom_config;
20 20
         }
21 21
 
Please login to merge, or discard this patch.