aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search/search.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-07-27 19:02:47 +0000
committerNils Adermann <naderman@naderman.de>2006-07-27 19:02:47 +0000
commit007f4f69872f0e8f9d848229078e488f620eaca1 (patch)
tree5055f20042426a0da42a24c556ee58cb10dcae89 /phpBB/includes/search/search.php
parent412cf506891e7e35dcf1b35190bc2a05d823bb96 (diff)
downloadforums-007f4f69872f0e8f9d848229078e488f620eaca1.tar
forums-007f4f69872f0e8f9d848229078e488f620eaca1.tar.gz
forums-007f4f69872f0e8f9d848229078e488f620eaca1.tar.bz2
forums-007f4f69872f0e8f9d848229078e488f620eaca1.tar.xz
forums-007f4f69872f0e8f9d848229078e488f620eaca1.zip
- fixed the age calculation (note: turn on your brain before commiting something like this the next time) [Bug #3337]
- removed the split_words array, introduced an enforced search_query - the forum used for global topics in the search is now a forum, and no longer a category [Bug #2561] - Bug #3404 - allow accessing reports by report_id, in contrast to mcp_queue this cannot just use the post id, since there can be multiple closed reports per post, so closed reports have to be accessed by report id, open reports, can optionally be accessed by report id or post id [Bug #3149] - only attempt to unflag reported topics on closing a report when there are any without other reported posts [Bug #3057] - updated fulltext_mysql to use the the search_query string - overwrote the old fulltext_native with our improved version since it consumes too much time to maintain boths and we would switch to the improved version later anyway - always show a link to search a user's posts even if the postcount is zero since he might only have posted in forums which do not count posts [Bug #3267] git-svn-id: file:///svn/phpbb/trunk@6211 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/search/search.php')
-rwxr-xr-xphpBB/includes/search/search.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/includes/search/search.php b/phpBB/includes/search/search.php
index 4f7abd50dc..fa91b9eef5 100755
--- a/phpBB/includes/search/search.php
+++ b/phpBB/includes/search/search.php
@@ -33,8 +33,6 @@ class search_backend
var $ignore_words = array();
var $match_synonym = array();
var $replace_synonym = array();
- var $split_words = array();
- var $common_words = array();
function search_backend(&$error)
{