mirror of
https://github.com/misterunknown/ifm.git
synced 2025-08-11 18:43:58 +02:00
Fixed typo in getConfig adjustment
This commit is contained in:
@@ -3463,7 +3463,7 @@ f00bar;
|
|||||||
|
|
||||||
private function getConfig() {
|
private function getConfig() {
|
||||||
$ret = $this->config;
|
$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;
|
$ret['isDocroot'] = ( $this->getRootDir() == $this->getScriptRoot() ) ? true : false;
|
||||||
$this->jsonResponse( $ret );
|
$this->jsonResponse( $ret );
|
||||||
}
|
}
|
||||||
|
2
ifm.php
2
ifm.php
@@ -3463,7 +3463,7 @@ f00bar;
|
|||||||
|
|
||||||
private function getConfig() {
|
private function getConfig() {
|
||||||
$ret = $this->config;
|
$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;
|
$ret['isDocroot'] = ( $this->getRootDir() == $this->getScriptRoot() ) ? true : false;
|
||||||
$this->jsonResponse( $ret );
|
$this->jsonResponse( $ret );
|
||||||
}
|
}
|
||||||
|
@@ -406,7 +406,7 @@ f00bar;
|
|||||||
|
|
||||||
private function getConfig() {
|
private function getConfig() {
|
||||||
$ret = $this->config;
|
$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;
|
$ret['isDocroot'] = ( $this->getRootDir() == $this->getScriptRoot() ) ? true : false;
|
||||||
$this->jsonResponse( $ret );
|
$this->jsonResponse( $ret );
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user