From b5809d5fe890bcfc5860084633d14bfe5e1003e4 Mon Sep 17 00:00:00 2001 From: flashwave Date: Tue, 10 Nov 2015 21:03:29 +0100 Subject: [PATCH] small amount of changes that isn't worth mentioning --- _sakura/components/Users.php | 49 ------------------------- _sakura/templates/yuuno/main/banned.tpl | 2 +- public/settings.php | 4 +- public/support.php | 2 +- 4 files changed, 3 insertions(+), 54 deletions(-) diff --git a/_sakura/components/Users.php b/_sakura/components/Users.php index c3b4f83..6fd950c 100755 --- a/_sakura/components/Users.php +++ b/_sakura/components/Users.php @@ -571,37 +571,6 @@ class Users return [1, 'SUCCESS']; } - // Deactivating a user - public static function deactivateUser($uid) - { - // Get the user data - $user = Database::fetch('users', false, ['user_id' => [$uid, '=']]); - - // Check if user exists - if (!count($user) > 1) { - return [0, 'USER_NOT_EXIST']; - } - - // Check if user is already deactivated - if (Permissions::check('SITE', 'DEACTIVATED', $user['user_id'], 1)) { - return [0, 'USER_ALREADY_DEACTIVE']; - } - - // Deactivate the account - Database::update('users', [ - [ - 'rank_main' => 2, - 'user_ranks' => json_encode([2]), - ], - [ - 'user_id' => [$uid, '='], - ], - ]); - - // Return success - return [1, 'SUCCESS']; - } - // Check if registration code is valid public static function checkRegistrationCode($code) { @@ -1008,18 +977,6 @@ class Users return $ranks; } - // Get all warnings issued to a user (or all warnings a user issued) - public static function getWarnings($uid = 0, $iid = false) - { - // Do the database query - $warnings = Database::fetch('warnings', true, ($uid ? [ - ($iid ? 'moderator_id' : 'user_id') => [$uid, '='], - ] : null)); - - // Return all the warnings - return $warnings; - } - // Get a user's notifications public static function getNotifications($uid = null, $timediff = 0, $excludeRead = true, $markRead = false) { @@ -1090,12 +1047,6 @@ class Users ]); } - // Getting a user's PMs - public static function getPrivateMessages($from = false) - { - return []; - } - // Get friends public static function getFriends($uid = null, $timestamps = false, $getData = false, $checkOnline = false) { diff --git a/_sakura/templates/yuuno/main/banned.tpl b/_sakura/templates/yuuno/main/banned.tpl index 4d1b231..dc8a76c 100755 --- a/_sakura/templates/yuuno/main/banned.tpl +++ b/_sakura/templates/yuuno/main/banned.tpl @@ -27,5 +27,5 @@ - + {% endblock %} diff --git a/public/settings.php b/public/settings.php index cc45b0e..e7bcd58 100755 --- a/public/settings.php +++ b/public/settings.php @@ -39,7 +39,6 @@ if (isset($_REQUEST['request-notifications']) && $_REQUEST['request-notification foreach ($userNotifs as $notif) { // Add the notification to the display array $notifications[$notif['alert_timestamp']] = [ - 'read' => $notif['alert_read'], 'title' => $notif['alert_title'], 'text' => $notif['alert_text'], @@ -47,7 +46,6 @@ if (isset($_REQUEST['request-notifications']) && $_REQUEST['request-notification 'img' => $notif['alert_img'], 'timeout' => $notif['alert_timeout'], 'sound' => $notif['alert_sound'], - ]; } } @@ -1464,7 +1462,7 @@ if (Users::checkLogin()) { // PM inbox case 'messages.inbox': - $renderData['messages'] = Users::getPrivateMessages(); + $renderData['messages'] = []; break; // Notification history diff --git a/public/support.php b/public/support.php index d326cbc..2b9cbd9 100755 --- a/public/support.php +++ b/public/support.php @@ -63,7 +63,7 @@ if (isset($_REQUEST['mode']) $total, $itemName, Config::getConfig('sitename') . ' Premium Purchase', - 'http://' . Config::getConfig('url_main') . $urls->format('SITE_PREMIUM') + 'https://' . Config::getConfig('url_main') . $urls->format('SITE_PREMIUM') )) { // Store the amount of months in the global session array $_SESSION['premiumMonths'] = (int) $_POST['months'];