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