diff options
Diffstat (limited to 'app/Model/Category.php')
-rw-r--r-- | app/Model/Category.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/Model/Category.php b/app/Model/Category.php index 9cc2a193..bf40c60a 100644 --- a/app/Model/Category.php +++ b/app/Model/Category.php @@ -128,7 +128,6 @@ class Category extends Base $categories = explode(',', $this->config->get('project_categories')); foreach ($categories as $category) { - $category = trim($category); if (! empty($category)) { @@ -204,7 +203,6 @@ class Category extends Base ->findAll(); foreach ($categories as $category) { - $category['project_id'] = $dst_project_id; if (! $this->db->table(self::TABLE)->save($category)) { |