From 64998fdc04738e60fb7152dd5092985822598745 Mon Sep 17 00:00:00 2001 From: flashwave Date: Wed, 11 Nov 2015 16:56:03 -0500 Subject: [PATCH] Applied fixes from StyleCI --- _sakura/components/User.php | 7 ++++--- public/settings.php | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/_sakura/components/User.php b/_sakura/components/User.php index 88ef8ce..c68313b 100755 --- a/_sakura/components/User.php +++ b/_sakura/components/User.php @@ -174,7 +174,7 @@ class User $sessions = Database::fetch('sessions', true, ['user_id' => [$this->id(), '=']]); // If there's no entries just straight up return false - if(!$sessions) { + if (!$sessions) { return false; } @@ -207,7 +207,8 @@ class User } // Add ranks to a user - public function addRanks($ranks) { + public function addRanks($ranks) + { // Update the ranks array $ranks = array_map('intval', array_unique(array_merge($this->ranks(), $ranks))); @@ -231,7 +232,7 @@ class User // Iterate over the ranks foreach ($ranks as $rank) { // Try to find the value - if($key = array_search($rank, $currRanks)) { + if ($key = array_search($rank, $currRanks)) { unset($currRanks[$key]); // Change the main rank if it's set to the rank that's currently being remove diff --git a/public/settings.php b/public/settings.php index b32541e..63ab5be 100755 --- a/public/settings.php +++ b/public/settings.php @@ -65,7 +65,7 @@ if (isset($_REQUEST['request-notifications']) && $_REQUEST['request-notification $_SESSION['friendsOnline'][$friend->id()] = $friend->id(); // Add the notification to the display array - if($onlineNotify) { + if ($onlineNotify) { $notifications[] = [ 'read' => 0, 'title' => $friend->username() . ' is online.', @@ -81,7 +81,7 @@ if (isset($_REQUEST['request-notifications']) && $_REQUEST['request-notification unset($_SESSION['friendsOnline'][$friend->id()]); // Add the notification to the display array - if($onlineNotify) { + if ($onlineNotify) { $notifications[] = [ 'read' => 0, 'title' => $friend->username() . ' is offline.',