From 8c56f72e4b4f267c54330e081aad672800b6022c Mon Sep 17 00:00:00 2001 From: momo-i Date: Mon, 16 Mar 2009 10:54:42 +0000 Subject: Fixed: 1 line lyrics for insert db --- song.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'song.php') diff --git a/song.php b/song.php index 06932726..7c1953c4 100644 --- a/song.php +++ b/song.php @@ -35,7 +35,7 @@ switch ($_REQUEST['action']) { $show_lyrics = Config::get('show_lyrics'); if($show_lyrics == 1) { $lyric = new Artist(); - $return = scrub_out($lyric->get_song_lyrics($song->id, ucwords($song->f_artist), ucwords($song->title))); + $return = $lyric->get_song_lyrics($song->id, ucwords($song->f_artist), ucwords($song->title)); $link = ''; $link .= sprintf(_('%1$s - %2$s Lyrics Detail'), ucwords($song->f_artist), ucwords($song->title)); $link .= "

"; -- cgit