1
0
mirror of https://github.com/misterunknown/ifm.git synced 2025-08-09 17:46:31 +02:00

Fixed typo in getConfig adjustment

This commit is contained in:
Marco Dickert
2018-03-28 11:19:41 +02:00
parent 0b234e80d9
commit 010869734d
3 changed files with 3 additions and 3 deletions

View File

@@ -3463,7 +3463,7 @@ f00bar;
private function getConfig() {
$ret = $this->config;
$ret['inline'] = ( $this->mode == "api" ) ? true : false;
$ret['inline'] = ( $this->mode == "inline" ) ? true : false;
$ret['isDocroot'] = ( $this->getRootDir() == $this->getScriptRoot() ) ? true : false;
$this->jsonResponse( $ret );
}

View File

@@ -3463,7 +3463,7 @@ f00bar;
private function getConfig() {
$ret = $this->config;
$ret['inline'] = ( $this->mode == "api" ) ? true : false;
$ret['inline'] = ( $this->mode == "inline" ) ? true : false;
$ret['isDocroot'] = ( $this->getRootDir() == $this->getScriptRoot() ) ? true : false;
$this->jsonResponse( $ret );
}

View File

@@ -406,7 +406,7 @@ f00bar;
private function getConfig() {
$ret = $this->config;
$ret['inline'] = ( $this->mode == "api" ) ? true : false;
$ret['inline'] = ( $this->mode == "inline" ) ? true : false;
$ret['isDocroot'] = ( $this->getRootDir() == $this->getScriptRoot() ) ? true : false;
$this->jsonResponse( $ret );
}