1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-10 01:56:30 +02:00

Merge branch 'issue-53' of github.com:misterunknown/ifm into issue-53

This commit is contained in:
Marco Dickert
2017-07-26 00:36:38 +02:00
3 changed files with 3 additions and 3 deletions

View File

@@ -2897,7 +2897,7 @@ function IFM( params ) {
return false;
}
// custom limitations
foreach( $this->config->forbiddenChars as $char )
foreach( $this->config['forbiddenChars'] as $char )
if( strpos( $f, $char ) !== false )
return false;
return true;

View File

@@ -2897,7 +2897,7 @@ function IFM( params ) {
return false;
}
// custom limitations
foreach( $this->config->forbiddenChars as $char )
foreach( $this->config['forbiddenChars'] as $char )
if( strpos( $f, $char ) !== false )
return false;
return true;

View File

@@ -980,7 +980,7 @@ f00bar;
return false;
}
// custom limitations
foreach( $this->config->forbiddenChars as $char )
foreach( $this->config['forbiddenChars'] as $char )
if( strpos( $f, $char ) !== false )
return false;
return true;