summaryrefslogtreecommitdiffstats
path: root/song.php
diff options
context:
space:
mode:
authormomo-i <momo-i@ampache>2009-03-16 10:54:42 +0000
committermomo-i <momo-i@ampache>2009-03-16 10:54:42 +0000
commit8c56f72e4b4f267c54330e081aad672800b6022c (patch)
tree7e2358482706fe8b0e3509feb654d701595d1d48 /song.php
parentef1907143ce81b3fd01f5a164c53f9040198ac2d (diff)
downloadampache-8c56f72e4b4f267c54330e081aad672800b6022c.tar.gz
ampache-8c56f72e4b4f267c54330e081aad672800b6022c.tar.bz2
ampache-8c56f72e4b4f267c54330e081aad672800b6022c.zip
Fixed: 1 line lyrics for insert db
Diffstat (limited to 'song.php')
-rw-r--r--song.php2
1 files changed, 1 insertions, 1 deletions
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 = '<a href="http://lyricwiki.org/' . rawurlencode(ucwords($song->f_artist)) . ':' . rawurlencode(ucwords($song->title)) . '" target="_blank">';
$link .= sprintf(_('%1$s - %2$s Lyrics Detail'), ucwords($song->f_artist), ucwords($song->title));
$link .= "</a><br /><br />";