summaryrefslogtreecommitdiffstats
path: root/song.php
diff options
context:
space:
mode:
authormomo-i <momo-i@ampache>2009-03-11 08:14:49 +0000
committermomo-i <momo-i@ampache>2009-03-11 08:14:49 +0000
commit11a5195bc596ddf4705de0ea5a2fe307d66e35e5 (patch)
treee0cdfa91703bda5e6f28a30d8043fd2db7859640 /song.php
parentbb0405fc9caa97a8517807a1ea43767751734512 (diff)
downloadampache-11a5195bc596ddf4705de0ea5a2fe307d66e35e5.tar.gz
ampache-11a5195bc596ddf4705de0ea5a2fe307d66e35e5.tar.bz2
ampache-11a5195bc596ddf4705de0ea5a2fe307d66e35e5.zip
forgot commit (show lyrics)
Diffstat (limited to 'song.php')
-rw-r--r--song.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/song.php b/song.php
index ed070c8f..d0d4729a 100644
--- a/song.php
+++ b/song.php
@@ -34,6 +34,8 @@ switch ($_REQUEST['action']) {
// does user want to display lyrics?
$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)));
require_once Config::get('prefix') . '/templates/show_lyrics.inc.php';
}
break;