forked from blallo/rss-bridge
whitelist: check with/without ext
This commit is contained in:
parent
169e2d7762
commit
99b3168452
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ else {
|
||||||
|
|
||||||
// whitelist control function
|
// whitelist control function
|
||||||
function BridgeWhitelist( $whitelist, $name ) {
|
function BridgeWhitelist( $whitelist, $name ) {
|
||||||
if(in_array((string)$name, $whitelist))
|
if(in_array("$name", $whitelist) or in_array("$name.php", $whitelist))
|
||||||
return TRUE;
|
return TRUE;
|
||||||
else
|
else
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue