diff options
author | xgizzmo <xgizzmo@ampache> | 2005-09-06 19:12:59 +0000 |
---|---|---|
committer | xgizzmo <xgizzmo@ampache> | 2005-09-06 19:12:59 +0000 |
commit | be23e09225cb961e94dbd95c6f394a5d5d7036cb (patch) | |
tree | 3778109e4a05aebd38dee896da31e1364ea3e189 /albums.php | |
parent | de44ee09789ffcbccf2d7ededb43e378226a4e9e (diff) | |
download | ampache-be23e09225cb961e94dbd95c6f394a5d5d7036cb.tar.gz ampache-be23e09225cb961e94dbd95c6f394a5d5d7036cb.tar.bz2 ampache-be23e09225cb961e94dbd95c6f394a5d5d7036cb.zip |
Resolved bug #78 and fixed a few html problems
Diffstat (limited to 'albums.php')
-rw-r--r-- | albums.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -77,8 +77,8 @@ elseif ($_REQUEST['action'] === 'find_art') { if ($result) { show_confirmation(_("Album Art Located"),_("Album Art information has been located in Amazon. If incorrect, click \"Reset Album Art\" below to remove the artwork."),"/albums.php?action=show&album=" . $album->id); echo " [ <a href=\"" . conf('web_path') . "/albums.php?action=clear_art&album_id=" . $album->id . "\">Reset Album Art</a> ]"; - echo "<p align=left><img src=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "\"></p>"; - echo "<p><form name=\"cover\" method=\"get\" action=\"".$_SERVER['PHP_SELF']."\">"; + echo "<p align=left><img src=\"" . conf('web_path') . "/albumart.php?id=" . $album->id . "\" /></p>"; + echo "<form name=\"coverart\" method=\"get\" action=\"".$_SERVER['PHP_SELF']."\">"; echo "Enter URL to album art "; echo "<input type=\"text\" size=\"40\" id=\"cover\" name=\"cover\" value=\"\" />\n"; echo "<input type=\"hidden\" name=\"action\" value=\"find_art\" />\n"; @@ -88,7 +88,7 @@ elseif ($_REQUEST['action'] === 'find_art') { } else { show_confirmation(_("Album Art Not Located"),_("Album Art could not be located at this time. This may be due to Amazon being busy, or the album not being present in their collection."),"/albums.php?action=show&album=" . $album->id); - echo "<p><form name=\"cover\" method=\"get\" action=\"".$_SERVER['PHP_SELF']."\">"; + echo "<form name=\"coverart\" method=\"get\" action=\"".$_SERVER['PHP_SELF']."\">"; echo "Enter URL to album art "; echo "<input type=\"text\" size=\"40\" id=\"cover\" name=\"cover\" value=\"\" />"; echo "<input type=\"hidden\" name=\"action\" value=\"find_art\" />"; |