Merge branch 'master' of github.com:flashwave/sakura

This commit is contained in:
flash 2015-11-12 18:29:50 +01:00
commit 79c761c6e3
2 changed files with 6 additions and 5 deletions

View file

@ -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

View file

@ -70,7 +70,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.',
@ -86,7 +86,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.',