[core] use filter_input() instead of direct access to $_REQUEST
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
b3af604cc1
commit
13285f080a
1 changed files with 13 additions and 17 deletions
20
index.php
20
index.php
|
@ -91,12 +91,10 @@ try{
|
|||
Format::setDir(__DIR__ . '/formats/');
|
||||
Cache::setDir(__DIR__ . '/caches/');
|
||||
|
||||
if( isset($_REQUEST) && isset($_REQUEST['action']) ){
|
||||
switch($_REQUEST['action']){
|
||||
case 'display':
|
||||
if( isset($_REQUEST['bridge']) ){
|
||||
$action=filter_input(INPUT_GET,'action');
|
||||
$bridge=filter_input(INPUT_GET,'bridge');
|
||||
if($action === 'display' && !empty($bridge)){
|
||||
unset($_REQUEST['action']);
|
||||
$bridge = $_REQUEST['bridge'];
|
||||
unset($_REQUEST['bridge']);
|
||||
$format = $_REQUEST['format'];
|
||||
unset($_REQUEST['format']);
|
||||
|
@ -115,9 +113,9 @@ try{
|
|||
} else {
|
||||
$bridge->setCache($cache); // just add disable cache to your query to disable caching
|
||||
}
|
||||
if(defined('PROXY_URL') && PROXY_BYBRIDGE &&
|
||||
isset($_REQUEST['_noproxy'])
|
||||
){
|
||||
|
||||
$noproxy=filter_input(INPUT_GET,'_noproxy');
|
||||
if(defined('PROXY_URL') && PROXY_BYBRIDGE && !empty($noproxy)){
|
||||
$bridge->useProxy=false;
|
||||
}
|
||||
$bridge->loadMetadatas();
|
||||
|
@ -138,9 +136,7 @@ try{
|
|||
|
||||
}
|
||||
die;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
catch(HttpException $e){
|
||||
|
@ -173,7 +169,7 @@ $formats = Format::searchInformation();
|
|||
</header>
|
||||
<?php
|
||||
$activeFoundBridgeCount = 0;
|
||||
$showInactive = isset($_REQUEST['show_inactive']) && $_REQUEST['show_inactive'] == 1;
|
||||
$showInactive = filter_input(INPUT_GET,'show_inactive',FILTER_VALIDATE_BOOLEAN);
|
||||
$inactiveBridges = '';
|
||||
$bridgeList = Bridge::listBridges();
|
||||
foreach($bridgeList as $bridgeName)
|
||||
|
|
Loading…
Reference in a new issue