equal
deleted
inserted
replaced
188 $html .= '</p>'; |
188 $html .= '</p>'; |
189 } |
189 } |
190 $db->free_result(); |
190 $db->free_result(); |
191 $html .= '<h3>' . $lang->get('onpage_filebox_lbl_pagesusing') . '</h3>'; |
191 $html .= '<h3>' . $lang->get('onpage_filebox_lbl_pagesusing') . '</h3>'; |
192 $q = $db->sql_query('SELECT t.page_id, t.namespace, p.name FROM ' . table_prefix . "page_text AS t\n" |
192 $q = $db->sql_query('SELECT t.page_id, t.namespace, p.name FROM ' . table_prefix . "page_text AS t\n" |
193 . " LEFT JOIN enano_pages AS p\n" |
193 . " LEFT JOIN " . table_prefix . "pages AS p\n" |
194 . " ON ( t.page_id = p.urlname AND t.namespace = p.namespace )\n" |
194 . " ON ( t.page_id = p.urlname AND t.namespace = p.namespace )\n" |
195 . " WHERE t.page_text REGEXP '\\\\[\\\\[:" . |
195 . " WHERE t.page_text REGEXP '\\\\[\\\\[:" . |
196 addslashes(preg_quote($paths->nslist[$this->namespace])) . |
196 addslashes(preg_quote($paths->nslist[$this->namespace])) . |
197 addslashes(preg_quote($this->page_id)) . |
197 addslashes(preg_quote($this->page_id)) . |
198 "(\\\\||\\\\])';"); |
198 "(\\\\||\\\\])';"); |