From 7420d6ef30046d934af158809907eef4dc2fad67 Mon Sep 17 00:00:00 2001 From: clint <> Date: Sat, 2 May 2009 17:28:25 +0000 Subject: [PATCH] get rid of the spurious space from the magnatune spam --- gnukebox/scrobble-utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnukebox/scrobble-utils.php b/gnukebox/scrobble-utils.php index 24e661d9..b7c38b3e 100644 --- a/gnukebox/scrobble-utils.php +++ b/gnukebox/scrobble-utils.php @@ -171,7 +171,7 @@ function NoSpamTracks ($track) { // This function exists to remove things like '(PREVIEW: buy it at www.magnatune.com)' from track names. - $track = str_replace("(PREVIEW: buy it at www.magnatune.com)", "", $track); + $track = str_replace(" (PREVIEW: buy it at www.magnatune.com)", "", $track); return $track; -- GitLab