admin/blocksadmin.php 1 location
|
@@ 230-232 (lines=3) @@
|
227 |
|
. "<br><br>\n"; |
228 |
|
break; |
229 |
|
case ('order'): |
230 |
|
if (!$GLOBALS['xoopsSecurity']->check()) { |
231 |
|
$helper->redirect('admin/blocksadmin.php', Constants::REDIRECT_DELAY_MEDIUM, implode('<br>', $GLOBALS['xoopsSecurity']->getErrors())); |
232 |
|
} |
233 |
|
$bid = Request::getArray('bid', [], 'POST'); |
234 |
|
$oldtitle = Request::getArray('oldtitle', [], 'POST'); |
235 |
|
$title = Request::getArray('title', [], 'POST'); |
admin/feedback.php 1 location
|
@@ 59-61 (lines=3) @@
|
56 |
|
break; |
57 |
|
case 'send': |
58 |
|
// Security Check |
59 |
|
if (!$GLOBALS['xoopsSecurity']->check()) { |
60 |
|
$helper->redirect('admin/index.php', Constants::REDIRECT_DELAY_MEDIUM, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); |
61 |
|
} |
62 |
|
|
63 |
|
$GLOBALS['xoopsTpl']->assign('navigation', $adminObject->displayNavigation('feedback.php')); |
64 |
|
|
testdata/index.php 1 location
|
@@ 38-40 (lines=3) @@
|
35 |
|
switch ($op) { |
36 |
|
case 'load': |
37 |
|
if (\Xmf\Request::hasVar('ok', 'REQUEST') && Constants::CONFIRM_OK == $_REQUEST['ok']) { |
38 |
|
if (!$GLOBALS['xoopsSecurity']->check()) { |
39 |
|
$helper->redirect('admin/index.php', Constants::REDIRECT_DELAY_MEDIUM, implode(',', $GLOBALS['xoopsSecurity']->getErrors())); |
40 |
|
} |
41 |
|
loadSampleData(); |
42 |
|
} else { |
43 |
|
xoops_cp_header(); |