From 29527b4c880fb76e7a1a214bdaf178548ee7fd58 Mon Sep 17 00:00:00 2001 From: Peter Deltchev Date: Mon, 7 Sep 2015 18:31:58 -0700 Subject: [PATCH] T357: Removed + symbols from the classifier's fulltext query. --- app/commands/ClassifyMLPMA.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/commands/ClassifyMLPMA.php b/app/commands/ClassifyMLPMA.php index b44cbf20..5dcd6bf1 100644 --- a/app/commands/ClassifyMLPMA.php +++ b/app/commands/ClassifyMLPMA.php @@ -73,7 +73,7 @@ class ClassifyMLPMA extends Command { // Original, show song remix, fan song remix, show audio remix, or ponified song? //========================================================================================================== $sanitizedTrackTitle = $parsedTags['title']; - $sanitizedTrackTitle = str_replace([' - ', 'ft.', '*'], ' ', $sanitizedTrackTitle); + $sanitizedTrackTitle = str_replace(['-', '+', 'ft.', '*'], ' ', $sanitizedTrackTitle); $queriedTitle = DB::connection()->getPdo()->quote($sanitizedTrackTitle); $officialSongs = ShowSong::select(['id', 'title'])