فهرست منبع

unnecessary string concatenation

El RIDO 3 سال پیش
والد
کامیت
3a4e5ed0c9
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      lib/Controller.php

+ 2 - 2
lib/Controller.php

@@ -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
             );
         }