aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/search.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/search.php')
-rw-r--r--phpBB/includes/search.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/includes/search.php b/phpBB/includes/search.php
index c8d40a8d58..0b68af8f1c 100644
--- a/phpBB/includes/search.php
+++ b/phpBB/includes/search.php
@@ -172,6 +172,7 @@ function add_search_words($post_id, $post_text, $post_title = "")
{
case 'postgresql':
case 'msaccess':
+ case 'mssql-odbc':
case 'oracle':
case 'db2':
$sql = "SELECT word_id, word_text
@@ -208,7 +209,6 @@ function add_search_words($post_id, $post_text, $post_title = "")
$value_sql .= ( ( $value_sql != "" ) ? ", " : "" ) . "('" . $word[$i] . "')";
break;
case 'mssql':
- case 'mssql-odbc':
$value_sql .= ( ( $value_sql != "" ) ? " UNION ALL " : "" ) . "SELECT '" . $word[$i] . "'";
break;
default:
@@ -233,7 +233,6 @@ function add_search_words($post_id, $post_text, $post_title = "")
VALUES $value_sql";
break;
case 'mssql':
- case 'mssql-odbc':
$sql = "INSERT INTO " . SEARCH_WORD_TABLE . " (word_text)
$value_sql";
break;