unnecessary string concatenation

pull/1046/head
El RIDO 2023-01-15 14:45:10 +01:00
parent bf7d2f05b6
commit 3a4e5ed0c9
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
1 changed files with 2 additions and 2 deletions

View File

@ -445,8 +445,8 @@ class Controller
}
if ($type === 'types') {
$content = str_replace(
'"' . implode('", "', array_keys($this->_conf->getDefaults()['expire_options'])) . '"',
'"' . implode('", "', array_keys($this->_conf->getSection('expire_options'))) . '"',
implode('", "', array_keys($this->_conf->getDefaults()['expire_options'])),
implode('", "', array_keys($this->_conf->getSection('expire_options'))),
$content
);
}