From a0fb15a86ae6afcd753cf4b95b2a97948ca84a02 Mon Sep 17 00:00:00 2001 From: Peter Deltchev Date: Tue, 8 Sep 2015 23:17:13 -0700 Subject: [PATCH] T357: Removed more characters from the 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 597a565a..3879fc4e 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'])