1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | /* |
||
6 | You may not change or alter any portion of this comment or credits |
||
7 | of supporting developers from this source code or any supporting source code |
||
8 | which is considered copyrighted (c) material of the original comment or credit authors. |
||
9 | |||
10 | This program is distributed in the hope that it will be useful, |
||
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
||
13 | */ |
||
14 | |||
15 | /** |
||
16 | * @category Module |
||
17 | * @package yogurt |
||
18 | * @copyright {@link https://xoops.org/ XOOPS Project} |
||
19 | * @license GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html) |
||
20 | * @author Marcello Brandão aka Suico, Mamba, LioMJ <https://xoops.org> |
||
21 | */ |
||
22 | |||
23 | use Xmf\Request; |
||
24 | use XoopsModules\Yogurt; |
||
25 | |||
26 | require __DIR__ . '/header.php'; |
||
27 | |||
28 | if (!$GLOBALS['xoopsSecurity']->check()) { |
||
29 | redirect_header(Request::getString('HTTP_REFERER', '', 'SERVER'), 3, _MD_YOGURT_TOKENEXPIRED); |
||
30 | } |
||
31 | |||
32 | $uid = Request::getInt('uid', 0, 'POST'); |
||
33 | /** |
||
34 | * Creating the factory loading the picture changing its caption |
||
35 | */ |
||
36 | $suspensionsFactory = new Yogurt\SuspensionsHandler( |
||
37 | $xoopsDB |
||
38 | ); |
||
39 | $suspension = $suspensionsFactory->create(false); |
||
40 | $suspension->load($uid); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
41 | |||
42 | if ($xoopsUser->isAdmin(1)) { |
||
43 | /** @var \XoopsMemberHandler $memberHandler */ |
||
44 | |||
45 | $memberHandler = xoops_getHandler('member'); |
||
46 | |||
47 | $thisUser = $memberHandler->getUser($uid); |
||
48 | |||
49 | $thisUser->setVar('email', $suspension->getVar('old_email', 'n')); |
||
50 | |||
51 | $thisUser->setVar('pass', $suspension->getVar('old_pass', 'n')); |
||
52 | |||
53 | $thisUser->setVar('user_sig', $suspension->getVar('old_signature', 'n')); |
||
54 | |||
55 | $memberHandler->insertUser($thisUser); |
||
56 | |||
57 | $criteria = new Criteria('uid', $uid); |
||
58 | |||
59 | $suspensionsFactory->deleteAll($criteria); |
||
60 | |||
61 | redirect_header('index.php?uid=' . $uid, 3, _MD_YOGURT_USER_UNSUSPENDED); |
||
62 | } |
||
63 | |||
64 | require dirname(__DIR__, 2) . '/footer.php'; |
||
65 |