Code Duplication    Length = 3-3 lines in 2 locations

application/modules/admin/pages.php 2 locations

@@ 143-145 (lines=3) @@
140
            $description = $this->lib_admin->db_post('page_description');
141
142
            // create keywords
143
            if ($keywords == '' AND $settings['create_keywords'] == 'auto') {
144
                $keywords = $this->lib_seo->get_keywords($this->input->post('prev_text') . ' ' . $this->input->post('full_text'));
145
            }
146
147
            // create description
148
            if ($description == '' AND $settings['create_description'] == 'auto') {
@@ 148-150 (lines=3) @@
145
            }
146
147
            // create description
148
            if ($description == '' AND $settings['create_description'] == 'auto') {
149
                $description = $this->lib_seo->get_description($this->input->post('prev_text') . ' ' . $this->input->post('full_text'));
150
            }
151
152
            mb_substr($keywords, -1) == ',' ? $keywords = mb_substr($keywords, 0, -1) : TRUE;
153