use Request-wrapper-class for every access to $_GET superglobal
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -107,7 +107,7 @@ if ($page == 'message') {
|
||||
}
|
||||
}
|
||||
} elseif ($action == 'showsuccess') {
|
||||
$sentitems = isset($_GET['sentitems']) ? (int)$_GET['sentitems'] : 0;
|
||||
$sentitems = Request::get('sentitems', 0);
|
||||
|
||||
if ($sentitems == 0) {
|
||||
$note_type = 'info';
|
||||
|
||||
Reference in New Issue
Block a user