1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

- proper redirect after deleting a report [Bug #2260]

- sql_escape words before fulltext update
- correct language string for "search facilities" in acp_search


git-svn-id: file:///svn/phpbb/trunk@6075 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Nils Adermann
2006-06-16 18:31:51 +00:00
parent 010e453b45
commit d4a2bec8d3
3 changed files with 10 additions and 3 deletions

View File

@@ -825,7 +825,7 @@ class fulltext_native extends search_backend
}
$db->sql_freeresult($result);
$new_words = array_diff($unique_add_words, array_keys($word_ids));
$new_words = array_map(array(&$db, 'sql_escape'), array_diff($unique_add_words, array_keys($word_ids)));
if (sizeof($new_words))
{