mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-10-01 01:26:10 -04:00
unnecessary string concatenation
This commit is contained in:
parent
bf7d2f05b6
commit
3a4e5ed0c9
@ -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
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user