From 1207767bb3b23d6059dcdd54f10a9bd0b98e56b9 Mon Sep 17 00:00:00 2001 From: Dhruv Date: Sun, 9 Mar 2014 01:16:13 +0530 Subject: [ticket/11938] use sql_attr_string instead of sql_attr_str2ordinal PHPBB3-11938 --- phpBB/phpbb/search/fulltext_sphinx.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB/phpbb/search') diff --git a/phpBB/phpbb/search/fulltext_sphinx.php b/phpBB/phpbb/search/fulltext_sphinx.php index acbfad9474..ae0b0b4e74 100644 --- a/phpBB/phpbb/search/fulltext_sphinx.php +++ b/phpBB/phpbb/search/fulltext_sphinx.php @@ -284,7 +284,7 @@ class fulltext_sphinx array('sql_attr_bool', 'deleted'), array('sql_attr_timestamp' , 'post_time'), array('sql_attr_timestamp' , 'topic_last_post_time'), - array('sql_attr_str2ordinal', 'post_subject'), + array('sql_attr_string', 'post_subject'), ), 'source source_phpbb_' . $this->id . '_delta : source_phpbb_' . $this->id . '_main' => array( array('sql_query_pre', ''), -- cgit v1.2.1 From 8290dd6b1ce9051b774ad42ae633fbbbbaeb199b Mon Sep 17 00:00:00 2001 From: Dhruv Date: Sun, 9 Mar 2014 01:17:36 +0530 Subject: [ticket/11938] Fix whitespace characters PHPBB3-11938 --- phpBB/phpbb/search/fulltext_sphinx.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'phpBB/phpbb/search') diff --git a/phpBB/phpbb/search/fulltext_sphinx.php b/phpBB/phpbb/search/fulltext_sphinx.php index ae0b0b4e74..d86a394326 100644 --- a/phpBB/phpbb/search/fulltext_sphinx.php +++ b/phpBB/phpbb/search/fulltext_sphinx.php @@ -282,8 +282,8 @@ class fulltext_sphinx array('sql_attr_uint', 'post_visibility'), array('sql_attr_bool', 'topic_first_post'), array('sql_attr_bool', 'deleted'), - array('sql_attr_timestamp' , 'post_time'), - array('sql_attr_timestamp' , 'topic_last_post_time'), + array('sql_attr_timestamp', 'post_time'), + array('sql_attr_timestamp', 'topic_last_post_time'), array('sql_attr_string', 'post_subject'), ), 'source source_phpbb_' . $this->id . '_delta : source_phpbb_' . $this->id . '_main' => array( -- cgit v1.2.1