diff options
author | momo-i <momo-i@ampache> | 2009-03-11 22:59:06 +0000 |
---|---|---|
committer | momo-i <momo-i@ampache> | 2009-03-11 22:59:06 +0000 |
commit | 5d1704555a9f0f8f29a845e4c406dbf2395cbd3d (patch) | |
tree | 25b0bdb2d0d258ac4ea81f279db5e44630ece316 /templates/show_lyrics.inc.php | |
parent | cffd7068d6a1717ac55abe4a3f0b94e43287f213 (diff) | |
download | ampache-5d1704555a9f0f8f29a845e4c406dbf2395cbd3d.tar.gz ampache-5d1704555a9f0f8f29a845e4c406dbf2395cbd3d.tar.bz2 ampache-5d1704555a9f0f8f29a845e4c406dbf2395cbd3d.zip |
Added: Lyrics wiki link on show song page
Diffstat (limited to 'templates/show_lyrics.inc.php')
-rw-r--r-- | templates/show_lyrics.inc.php | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/templates/show_lyrics.inc.php b/templates/show_lyrics.inc.php index 9812c878..6b5af3b1 100644 --- a/templates/show_lyrics.inc.php +++ b/templates/show_lyrics.inc.php @@ -33,16 +33,17 @@ <?php show_box_top(sprintf(_('%s Lyrics'), $song->title)); ?> <table class="tabledata" cellspacing="0" cellpadding="0"> <tr> - <td> - <?php - if($return == "Sorry Lyrics, Not found") { - echo _("Sorry Lyrics Not Found."); - } - else { - echo "<pre>" . $return . "</pre>"; - } - ?> - </td> + <td> + <?php + if($return == "Sorry Lyrics, Not found") { + echo _("Sorry Lyrics Not Found."); + } + else { + echo $link; + echo "<pre>" . $return . "</pre>"; + } + ?> + </td> </tr> </table> <?php show_box_bottom(); ?> |