From 5d1704555a9f0f8f29a845e4c406dbf2395cbd3d Mon Sep 17 00:00:00 2001 From: momo-i Date: Wed, 11 Mar 2009 22:59:06 +0000 Subject: Added: Lyrics wiki link on show song page --- song.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'song.php') diff --git a/song.php b/song.php index d0d4729a..06932726 100644 --- a/song.php +++ b/song.php @@ -36,6 +36,9 @@ switch ($_REQUEST['action']) { if($show_lyrics == 1) { $lyric = new Artist(); $return = scrub_out($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 .= "

"; require_once Config::get('prefix') . '/templates/show_lyrics.inc.php'; } break; -- cgit