diff options
Diffstat (limited to 'song.php')
-rw-r--r-- | song.php | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 = '<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 />"; require_once Config::get('prefix') . '/templates/show_lyrics.inc.php'; } break; |