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:
@@ -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 );
|
||||
}
|
||||
|
2
ifm.php
2
ifm.php
@@ -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 );
|
||||
}
|
||||
|
@@ -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 );
|
||||
}
|
||||
|
Reference in New Issue
Block a user