Test Setup Failed
Push — master ( f3ea8f...027aaa )
by Ankit
02:16
created
login.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 session_start();
3
-if(isset($_SESSION['start']))
3
+if (isset($_SESSION['start']))
4 4
 {
5 5
     header("Location: account.php");
6 6
 }
Please login to merge, or discard this patch.
index.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 		<div class="header">
16 16
 			<a id="brand" href="#">OpenChat</a>
17 17
 			<ul class="nav-right">
18
-				<?php if(isset($_SESSION['start']))
18
+				<?php if (isset($_SESSION['start']))
19 19
 				{
20 20
 				?>
21 21
 				<li><a href="account.php">Account</a></li>
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,7 @@
 block discarded – undo
22 22
 				<li><a href="message.php">Message</a></li>
23 23
 				<li><a href="registration-module/source/class.logout.php">Log out</a></li>
24 24
 				<?php 
25
-				}
26
-				else
25
+				} else
27 26
 				{
28 27
 				?>
29 28
 				<li><a href="login.php">Login</a></li>
Please login to merge, or discard this patch.
account.php 2 patches
Braces   +21 added lines, -23 removed lines patch added patch discarded remove patch
@@ -22,9 +22,7 @@  discard block
 block discarded – undo
22 22
 		}
23 23
 	}
24 24
 
25
-}
26
-
27
-else if($user)
25
+} else if($user)
28 26
 {
29 27
 	$query="SELECT * from login where username='$user'";
30 28
 	if($result=$connect->query($query))
@@ -42,8 +40,7 @@  discard block
 block discarded – undo
42 40
 					$row=array_merge($row,$r);
43 41
 					// var_dump($row);
44 42
 				}
45
-			}
46
-			else
43
+			} else
47 44
 			{
48 45
 				die("error");
49 46
 			}
@@ -67,8 +64,7 @@  discard block
 block discarded – undo
67 64
 				<li><a href="../message.php">Message</a></li>
68 65
 				<li><a href="../registration-module/source/class.logout.php">Log out</a></li>
69 66
 				<?php 
70
-				}
71
-				else
67
+				} else
72 68
 				{
73 69
 				?>
74 70
 				<li><a href="../login.php">Login</a></li>
@@ -92,16 +88,21 @@  discard block
 block discarded – undo
92 88
 				<div class="brief">
93 89
 					<h1 id="name">Name: <?php echo $row['name']; ?></h1><br>
94 90
 					<?php foreach ($row as $key => $value) {
95
-						if($key=='username' and $value!=null)
96
-							echo '<p>Username: '.$row["username"] .'</p><br>';
97
-						if($key=='email' and $value!=null)
98
-							echo '<p>Email Id: '.$row["email"] .'</p><br>';
99
-						if($key=='status' and $value!=null)
100
-							echo '<p>Status: '.$row["status"] .'</p><br>';
101
-						if($key=='education' and $value!=null)
102
-							echo '<p>Education: '.$row["education"] .'</p><br>';
103
-						if($key=='gender' and $value!=null)
104
-							echo '<p>Gender: 	'.$row["gender"] .'</p><br>';
91
+						if($key=='username' and $value!=null) {
92
+													echo '<p>Username: '.$row["username"] .'</p><br>';
93
+						}
94
+						if($key=='email' and $value!=null) {
95
+													echo '<p>Email Id: '.$row["email"] .'</p><br>';
96
+						}
97
+						if($key=='status' and $value!=null) {
98
+													echo '<p>Status: '.$row["status"] .'</p><br>';
99
+						}
100
+						if($key=='education' and $value!=null) {
101
+													echo '<p>Education: '.$row["education"] .'</p><br>';
102
+						}
103
+						if($key=='gender' and $value!=null) {
104
+													echo '<p>Gender: 	'.$row["gender"] .'</p><br>';
105
+						}
105 106
 					}
106 107
 					?>
107 108
 				</div>	
@@ -152,18 +153,15 @@  discard block
 block discarded – undo
152 153
 
153 154
 
154 155
 <?php
155
-		}
156
-		else
156
+		} else
157 157
 		{
158 158
 			die("Invalid User");
159 159
 		}
160
-	}
161
-	else
160
+	} else
162 161
 	{
163 162
 		die("invalid");
164 163
 	}
165
-}
166
-else
164
+} else
167 165
 {
168 166
 	header("Location:http://localhost/openchat/index.php");
169 167
 }
Please login to merge, or discard this patch.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -6,41 +6,41 @@  discard block
 block discarded – undo
6 6
 session_start();
7 7
 include 'database.php';
8 8
 $connect = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
9
-$user=explode("/", $_SERVER['REQUEST_URI']);
10
-$user = $user[count($user)-1];
9
+$user = explode("/", $_SERVER['REQUEST_URI']);
10
+$user = $user[count($user) - 1];
11 11
 var_dump($user);
12
-if(isset($_SESSION['start']) and !$user)
12
+if (isset($_SESSION['start']) and !$user)
13 13
 {
14
-	$login_id=$_SESSION['start'];
15
-	$query="SELECT username from login where login_id='$login_id'";
16
-	if($result=$connect->query($query))
14
+	$login_id = $_SESSION['start'];
15
+	$query = "SELECT username from login where login_id='$login_id'";
16
+	if ($result = $connect->query($query))
17 17
 	{
18
-		if($result->num_rows >0)
18
+		if ($result->num_rows > 0)
19 19
 		{
20
-			$row=$result->fetch_assoc();
21
-			$location="http://localhost/openchat/account.php/".$row['username'];
20
+			$row = $result->fetch_assoc();
21
+			$location = "http://localhost/openchat/account.php/".$row['username'];
22 22
 			header("Location:".$location);
23 23
 		}
24 24
 	}
25 25
 
26 26
 }
27 27
 
28
-else if($user)
28
+else if ($user)
29 29
 {
30
-	$query="SELECT * from login where username='$user'";
31
-	if($result=$connect->query($query))
30
+	$query = "SELECT * from login where username='$user'";
31
+	if ($result = $connect->query($query))
32 32
 	{
33
-		if($result->num_rows >0)
33
+		if ($result->num_rows > 0)
34 34
 		{
35
-			$row=$result->fetch_assoc();
36
-			$id=$row['login_id'];
37
-			$query="SELECT * from profile where login_id='$id'";
38
-			if($result=$connect->query($query))
35
+			$row = $result->fetch_assoc();
36
+			$id = $row['login_id'];
37
+			$query = "SELECT * from profile where login_id='$id'";
38
+			if ($result = $connect->query($query))
39 39
 			{
40
-				if($result->num_rows>0)
40
+				if ($result->num_rows > 0)
41 41
 				{
42
-					$r=$result->fetch_assoc();
43
-					$row=array_merge($row,$r);
42
+					$r = $result->fetch_assoc();
43
+					$row = array_merge($row, $r);
44 44
 					// var_dump($row);
45 45
 				}
46 46
 			}
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
             <a id="brand" href="">OpenChat</a>
63 63
             <ul class="nav-right">
64 64
                 <li><a href="../index.php">About</a></li>
65
-                <?php if(isset($_SESSION['start']))
65
+                <?php if (isset($_SESSION['start']))
66 66
 				{
67 67
 				?>
68 68
 				<li><a href="../message.php">Message</a></li>
@@ -93,20 +93,20 @@  discard block
 block discarded – undo
93 93
 				<div class="brief">
94 94
 					<h1 id="name">Name: <?php echo $row['name']; ?></h1><br>
95 95
 					<?php foreach ($row as $key => $value) {
96
-						if($key=='username' and $value!=null)
97
-							echo '<p>Username: '.$row["username"] .'</p><br>';
98
-						if($key=='email' and $value!=null)
99
-							echo '<p>Email Id: '.$row["email"] .'</p><br>';
100
-						if($key=='status' and $value!=null)
101
-							echo '<p>Status: '.$row["status"] .'</p><br>';
102
-						if($key=='education' and $value!=null)
103
-							echo '<p>Education: '.$row["education"] .'</p><br>';
104
-						if($key=='gender' and $value!=null)
105
-							echo '<p>Gender: 	'.$row["gender"] .'</p><br>';
96
+						if ($key == 'username' and $value != null)
97
+							echo '<p>Username: '.$row["username"].'</p><br>';
98
+						if ($key == 'email' and $value != null)
99
+							echo '<p>Email Id: '.$row["email"].'</p><br>';
100
+						if ($key == 'status' and $value != null)
101
+							echo '<p>Status: '.$row["status"].'</p><br>';
102
+						if ($key == 'education' and $value != null)
103
+							echo '<p>Education: '.$row["education"].'</p><br>';
104
+						if ($key == 'gender' and $value != null)
105
+							echo '<p>Gender: 	'.$row["gender"].'</p><br>';
106 106
 					}
107 107
 					?>
108 108
 				</div>
109
-				<?php if($_SESSION['start']==$row['login_id'])
109
+				<?php if ($_SESSION['start'] == $row['login_id'])
110 110
 				{
111 111
 					?>
112 112
 				<div class="edit"><a href="#">Edit Profile</a></div>
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 			</div>
117 117
 
118 118
 			<?php
119
-			if($_SESSION['start']==$row['login_id'])
119
+			if ($_SESSION['start'] == $row['login_id'])
120 120
 			{
121 121
 				?>
122 122
 
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
 					<label>Education : </label>
128 128
 					<input type="text" name="education" id="education" value="<?php echo $row['education']; ?>"></input>
129 129
 					<label>Gender : </label><br>
130
-					<input type="radio" name="gender" id="gender" value="Male" <?php echo ($row['gender']=='Male')?'checked':'' ?>> Male<br>
131
-					<input type="radio" name="gender" id="gender" value="Female" <?php echo ($row['gender']=='Female')?'checked':'' ?>> Female<br>
130
+					<input type="radio" name="gender" id="gender" value="Male" <?php echo ($row['gender'] == 'Male') ? 'checked' : '' ?>> Male<br>
131
+					<input type="radio" name="gender" id="gender" value="Female" <?php echo ($row['gender'] == 'Female') ? 'checked' : '' ?>> Female<br>
132 132
 					<input type="submit" name="submit" value="Done" id="submit">
133 133
 				</form>
134 134
 			</div>
Please login to merge, or discard this patch.
src/Compose.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 namespace ChatApp;
4
-require_once (dirname(__DIR__) . '/database.php');
4
+require_once (dirname(__DIR__).'/database.php');
5 5
 
6 6
 /**
7 7
 *
@@ -23,18 +23,18 @@  discard block
 block discarded – undo
23 23
     public function SelectUser($msg)
24 24
     {
25 25
         $msg = $msg->value;
26
-        if(isset($_SESSION['start']) && isset($msg))
26
+        if (isset($_SESSION['start']) && isset($msg))
27 27
         {
28 28
             $id = $_SESSION['start'];
29 29
             $suggestion = trim($msg);
30
-            if($suggestion != "" )
30
+            if ($suggestion != "")
31 31
             {
32 32
                 $query = "SELECT * FROM login where login_id != '$id' and name like '$suggestion%' ORDER BY name DESC";
33
-                if($result = $this->connect->query($query))
33
+                if ($result = $this->connect->query($query))
34 34
                 {
35
-                    if($result->num_rows > 0)
35
+                    if ($result->num_rows > 0)
36 36
                     {
37
-                        while($row = $result->fetch_assoc())
37
+                        while ($row = $result->fetch_assoc())
38 38
                         {
39 39
                             $this->array = array_merge($this->array, [$row]);
40 40
                         }
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,18 +40,15 @@
 block discarded – undo
40 40
                         }
41 41
                         $this->array = array_merge([], ["Compose" => $this->array]);
42 42
                         return json_encode($this->array);
43
-                    }
44
-                    else
43
+                    } else
45 44
                     {
46 45
                         return json_encode(["Compose" => "Not Found"]);
47 46
                     }
48
-                }
49
-                else
47
+                } else
50 48
                 {
51 49
                     return json_encode(["Compose" => "Query Failed"]);
52 50
                 }
53
-            }
54
-            else
51
+            } else
55 52
             {
56 53
                 return json_encode(["Compose" => "Not Found"]);
57 54
             }
Please login to merge, or discard this patch.
src/Time.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -16,14 +16,14 @@
 block discarded – undo
16 16
     function TimeConversion($time)
17 17
     {
18 18
 
19
-        if(substr($time,4,11) == date("d M Y", time() + 16200))
20
-            $time = substr($time,16,5);
21
-        else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7)
22
-            $time = substr($time,0,3);
23
-        else if(substr($time,11,4) == date("Y", time() + 16200))
24
-            $time = substr($time,4,6);
19
+        if (substr($time, 4, 11) == date("d M Y", time() + 16200))
20
+            $time = substr($time, 16, 5);
21
+        else if (substr($time, 7, 8) == date("M Y", time() + 16200) && substr($time, 4, 2) - date("d") < 7)
22
+            $time = substr($time, 0, 3);
23
+        else if (substr($time, 11, 4) == date("Y", time() + 16200))
24
+            $time = substr($time, 4, 6);
25 25
         else
26
-            $time = substr($time,4,11);
26
+            $time = substr($time, 4, 11);
27 27
 
28 28
         return $time;
29 29
     }
Please login to merge, or discard this patch.
Braces   +9 added lines, -8 removed lines patch added patch discarded remove patch
@@ -16,14 +16,15 @@
 block discarded – undo
16 16
     function TimeConversion($time)
17 17
     {
18 18
 
19
-        if(substr($time,4,11) == date("d M Y", time() + 16200))
20
-            $time = substr($time,16,5);
21
-        else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7)
22
-            $time = substr($time,0,3);
23
-        else if(substr($time,11,4) == date("Y", time() + 16200))
24
-            $time = substr($time,4,6);
25
-        else
26
-            $time = substr($time,4,11);
19
+        if(substr($time,4,11) == date("d M Y", time() + 16200)) {
20
+                    $time = substr($time,16,5);
21
+        } else if(substr($time,7,8) == date("M Y", time() + 16200) && substr($time, 4,2) - date("d") < 7) {
22
+                    $time = substr($time,0,3);
23
+        } else if(substr($time,11,4) == date("Y", time() + 16200)) {
24
+                    $time = substr($time,4,6);
25
+        } else {
26
+                    $time = substr($time,4,11);
27
+        }
27 28
 
28 29
         return $time;
29 30
     }
Please login to merge, or discard this patch.
src/Models/message.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 class Message extends Model
10 10
 {
11
-    protected $table='message';
11
+    protected $table = 'message';
12 12
 
13 13
     protected $fillable = ['identifier_message_number', 'message', 'sent_by', 'time'];
14 14
 }
Please login to merge, or discard this patch.
src/User.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 
3 3
 
4 4
 namespace ChatApp;
5
-require_once (dirname(__DIR__) . '/database.php');
5
+require_once (dirname(__DIR__).'/database.php');
6 6
 
7 7
 /**
8 8
 * For retreiving User Information
@@ -21,12 +21,12 @@  discard block
 block discarded – undo
21 21
 
22 22
     function UserDetails($id, $para)
23 23
     {
24
-        if($para == True)
24
+        if ($para == True)
25 25
             $this->query = "SELECT * from login where login_id = '$id'";
26 26
         else
27 27
             $this->query = "SELECT * from login where username = '$id'";
28 28
         $this->result = $this->connect->query($this->query);
29
-        if($this->result->num_rows > 0)                   // if true
29
+        if ($this->result->num_rows > 0)                   // if true
30 30
         {
31 31
             $this->details = $this->result->fetch_assoc();
32 32
             return $this->details;
Please login to merge, or discard this patch.
Braces   +9 added lines, -7 removed lines patch added patch discarded remove patch
@@ -21,17 +21,19 @@
 block discarded – undo
21 21
 
22 22
     function UserDetails($id, $para)
23 23
     {
24
-        if($para == True)
25
-            $this->query = "SELECT * from login where login_id = '$id'";
26
-        else
27
-            $this->query = "SELECT * from login where username = '$id'";
24
+        if($para == True) {
25
+                    $this->query = "SELECT * from login where login_id = '$id'";
26
+        } else {
27
+                    $this->query = "SELECT * from login where username = '$id'";
28
+        }
28 29
         $this->result = $this->connect->query($this->query);
29
-        if($this->result->num_rows > 0)                   // if true
30
+        if($this->result->num_rows > 0) {
31
+            // if true
30 32
         {
31 33
             $this->details = $this->result->fetch_assoc();
32
-            return $this->details;
33 34
         }
34
-        else
35
+            return $this->details;
36
+        } else
35 37
         {
36 38
             return NULL;
37 39
         }
Please login to merge, or discard this patch.
src/Chat.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function onMessage(ConnectionInterface $from, $msg) {
39 39
         $sessionId = $from->WebSocket->request->getCookies()['PHPSESSID'];
40
-        if($msg == 'OpenChat initiated..!')
40
+        if ($msg == 'OpenChat initiated..!')
41 41
         {
42 42
             @$initial->initial = json_decode($this->onSidebar($from->userId));
43 43
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                     $client->send(json_encode($result));
99 99
                     $this->online = 1;
100 100
                 }
101
-                elseif($client == $from)
101
+                elseif ($client == $from)
102 102
                 {
103 103
                     @$result->sidebar = json_decode($this->onSidebar($client->userId));
104 104
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -52,28 +52,23 @@  discard block
 block discarded – undo
52 52
 
53 53
             $initial->conversation[0]->login_status = $this->online;
54 54
             $from->send(json_encode($initial));
55
-        }
56
-        elseif ($msg == 'Load Sidebar')
55
+        } elseif ($msg == 'Load Sidebar')
57 56
         {
58 57
             @$initial->initial = json_decode($this->onSidebar($from->userId));
59 58
             $from->send(json_encode($initial));
60
-        }
61
-        elseif (@json_decode($msg)->newConversation == 'Initiated')
59
+        } elseif (@json_decode($msg)->newConversation == 'Initiated')
62 60
         {
63 61
             @$result->conversation = json_decode($this->onConversation($msg, False, $sessionId));
64 62
             $from->send(json_encode($result));
65
-        }
66
-        elseif (@json_decode($msg)->search == 'search')
63
+        } elseif (@json_decode($msg)->search == 'search')
67 64
         {
68 65
             $searchResult = $this->onSearch($msg, $sessionId);
69 66
             $from->send($searchResult);
70
-        }
71
-        elseif (@json_decode($msg)->Compose == 'Compose')
67
+        } elseif (@json_decode($msg)->Compose == 'Compose')
72 68
         {
73 69
             $composeResult = $this->onCompose($msg, $sessionId);
74 70
             $from->send($composeResult);
75
-        }
76
-        else
71
+        } else
77 72
         {
78 73
             $this->onReply($msg, $sessionId);
79 74
 
@@ -97,8 +92,7 @@  discard block
 block discarded – undo
97 92
 
98 93
                     $client->send(json_encode($result));
99 94
                     $this->online = 1;
100
-                }
101
-                elseif($client == $from)
95
+                } elseif($client == $from)
102 96
                 {
103 97
                     @$result->sidebar = json_decode($this->onSidebar($client->userId));
104 98
 
Please login to merge, or discard this patch.
src/Conversation.php 2 patches
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 namespace ChatApp;
4
-require_once (dirname(__DIR__) . '/database.php');
4
+require_once (dirname(__DIR__).'/database.php');
5 5
 use ChatApp\Time;
6 6
 use ChatApp\User;
7 7
 
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
     {
31 31
 
32 32
         $flag = 1;
33
-        if(isset($_SESSION['start']) && isset($msg))
33
+        if (isset($_SESSION['start']) && isset($msg))
34 34
         {
35 35
             $add_load = 0;
36 36
             $id = $_SESSION['start'];
@@ -40,25 +40,25 @@  discard block
 block discarded – undo
40 40
 
41 41
             $fetch = $this->obUser->UserDetails($username, $para);
42 42
 
43
-            if($fetch != NULL)
43
+            if ($fetch != NULL)
44 44
             {
45 45
                 $login_id = (int)$fetch['login_id'];
46 46
 
47 47
                 // Unique Identifier
48
-                if($login_id > $id)
48
+                if ($login_id > $id)
49 49
                     $identifier = $id.':'.$login_id;
50 50
                 else
51 51
                     $identifier = $login_id.':'.$id;
52 52
 
53 53
                 $query = "SELECT total_messages from total_message where identifier = '$identifier'";
54
-                if($result = $this->connect->query($query))
54
+                if ($result = $this->connect->query($query))
55 55
                 {
56
-                    if($result->num_rows > 0)
56
+                    if ($result->num_rows > 0)
57 57
                     {
58 58
                         $total = $result->fetch_assoc();
59 59
                         $total = $total['total_messages'];
60
-                        if($total - $load > 0)
61
-                            if($total - $load > 10)
60
+                        if ($total - $load > 0)
61
+                            if ($total - $load > 10)
62 62
                                 $add_load = $load + 10;
63 63
                             else
64 64
                                 $add_load = $total;
@@ -66,14 +66,14 @@  discard block
 block discarded – undo
66 66
                 }
67 67
 
68 68
                 $query = "SELECT message, time, sent_by FROM messages WHERE identifier_message_number = '$identifier' ORDER BY id DESC limit ".$load;
69
-                if($result = $this->connect->query($query))
69
+                if ($result = $this->connect->query($query))
70 70
                 {
71
-                    if($result->num_rows > 0)
71
+                    if ($result->num_rows > 0)
72 72
                     {
73
-                        while($row = $result->fetch_assoc())
73
+                        while ($row = $result->fetch_assoc())
74 74
                         {
75 75
                             $row['time'] = $this->obTime->TimeConversion($row['time']);
76
-                            $row = array_merge($row,['start' => $id]);
76
+                            $row = array_merge($row, ['start' => $id]);
77 77
                             $this->array = array_merge($this->array, [$row]);
78 78
                         }
79 79
 
Please login to merge, or discard this patch.
Braces   +14 added lines, -16 removed lines patch added patch discarded remove patch
@@ -45,10 +45,11 @@  discard block
 block discarded – undo
45 45
                 $login_id = (int)$fetch['login_id'];
46 46
 
47 47
                 // Unique Identifier
48
-                if($login_id > $id)
49
-                    $identifier = $id.':'.$login_id;
50
-                else
51
-                    $identifier = $login_id.':'.$id;
48
+                if($login_id > $id) {
49
+                                    $identifier = $id.':'.$login_id;
50
+                } else {
51
+                                    $identifier = $login_id.':'.$id;
52
+                }
52 53
 
53 54
                 $query = "SELECT total_messages from total_message where identifier = '$identifier'";
54 55
                 if($result = $this->connect->query($query))
@@ -57,11 +58,12 @@  discard block
 block discarded – undo
57 58
                     {
58 59
                         $total = $result->fetch_assoc();
59 60
                         $total = $total['total_messages'];
60
-                        if($total - $load > 0)
61
-                            if($total - $load > 10)
61
+                        if($total - $load > 0) {
62
+                                                    if($total - $load > 10)
62 63
                                 $add_load = $load + 10;
63
-                            else
64
-                                $add_load = $total;
64
+                        } else {
65
+                                                            $add_load = $total;
66
+                            }
65 67
                     }
66 68
                 }
67 69
 
@@ -79,23 +81,19 @@  discard block
 block discarded – undo
79 81
 
80 82
                         $this->array = array_merge([['name' => $fetch['name'], 'username' => $fetch['username'], 'id' => $fetch['login_id'], 'load' => $add_load, 'type' => 1]], $this->array);
81 83
                         return json_encode($this->array);
82
-                    }
83
-                    else
84
+                    } else
84 85
                     {
85 86
                         return json_encode([['name' => $fetch['name'], 'username' => $fetch['username'], 'id' => $fetch['login_id'], 'type' => 0]]);
86 87
                     }
87
-                }
88
-                else
88
+                } else
89 89
                 {
90 90
                     echo "Query Failed";
91 91
                 }
92
-            }
93
-            else
92
+            } else
94 93
             {
95 94
                 echo "Query Failed";
96 95
             }
97
-        }
98
-        else
96
+        } else
99 97
         {
100 98
             header('Location:../login.php');
101 99
         }
Please login to merge, or discard this patch.