From 11a5195bc596ddf4705de0ea5a2fe307d66e35e5 Mon Sep 17 00:00:00 2001 From: momo-i Date: Wed, 11 Mar 2009 08:14:49 +0000 Subject: [PATCH] forgot commit (show lyrics) --- song.php | 2 ++ 1 file changed, 2 insertions(+) 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;