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:
@@ -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))
|
||||
{
|
||||
|
Reference in New Issue
Block a user