unnecessary string concatenation
This commit is contained in:
parent
bf7d2f05b6
commit
3a4e5ed0c9
1 changed files with 2 additions and 2 deletions
|
@ -445,8 +445,8 @@ class Controller
|
||||||
}
|
}
|
||||||
if ($type === 'types') {
|
if ($type === 'types') {
|
||||||
$content = str_replace(
|
$content = str_replace(
|
||||||
'"' . implode('", "', array_keys($this->_conf->getDefaults()['expire_options'])) . '"',
|
implode('", "', array_keys($this->_conf->getDefaults()['expire_options'])),
|
||||||
'"' . implode('", "', array_keys($this->_conf->getSection('expire_options'))) . '"',
|
implode('", "', array_keys($this->_conf->getSection('expire_options'))),
|
||||||
$content
|
$content
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue