mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-27 17:51:00 +00:00
Simplify PHP code
Change-Id: Ia1bd08cd972b2f5792d24d5fbc383c3c63b000db
This commit is contained in:
parent
8bd82c12f6
commit
75c2c5580a
|
@ -314,15 +314,12 @@ class CategoryTree {
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function getOptionsAsJsStructure( $depth = null ) {
|
public function getOptionsAsJsStructure( $depth = null ) {
|
||||||
|
$opt = $this->mOptions;
|
||||||
if ( $depth !== null ) {
|
if ( $depth !== null ) {
|
||||||
$opt = $this->mOptions;
|
|
||||||
$opt['depth'] = $depth;
|
$opt['depth'] = $depth;
|
||||||
$s = self::encodeOptions( $opt, 'json' );
|
|
||||||
} else {
|
|
||||||
$s = self::encodeOptions( $this->mOptions, 'json' );
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $s;
|
return self::encodeOptions( $opt, 'json' );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue