Passed
Push — master ( b4f10c...f56dd8 )
by Kishan
02:09
created
login.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
  *
18 18
  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND
19 19
  */
20
-  require_once __DIR__ . "/config.php";
20
+    require_once __DIR__ . "/config.php";
21 21
 
22 22
 if (isset($_SESSION['accessToken'])) {
23 23
     header('Location: https://localhost:8443/SociaManager/index.php'); 
Please login to merge, or discard this patch.
download-album.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 ) {
47 47
     $album_directory = $album_download_directory.$album_name;
48 48
     if (!file_exists($album_directory)) {
49
-         mkdir($album_directory, 0777);
49
+            mkdir($album_directory, 0777);
50 50
     }
51 51
 
52 52
     $request_albums_photo = $fb->get($album_id . "/photos?fields=images&limit=5", $accessToken);
Please login to merge, or discard this patch.