summaryrefslogtreecommitdiffstats
path: root/albums.php
diff options
context:
space:
mode:
authorxgizzmo <xgizzmo@ampache>2005-07-21 00:18:43 +0000
committerxgizzmo <xgizzmo@ampache>2005-07-21 00:18:43 +0000
commit5c848bfed284902d931d68b6f176c60a8b776762 (patch)
tree891de32985ff6c4363c8796bbbb7aa6514cc25ba /albums.php
parent68025ee8051d81064c002d16c2d6ad220894ada3 (diff)
downloadampache-5c848bfed284902d931d68b6f176c60a8b776762.tar.gz
ampache-5c848bfed284902d931d68b6f176c60a8b776762.tar.bz2
ampache-5c848bfed284902d931d68b6f176c60a8b776762.zip
HTML clean up,
Diffstat (limited to 'albums.php')
-rw-r--r--albums.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/albums.php b/albums.php
index 185cc3af..4b05f7ef 100644
--- a/albums.php
+++ b/albums.php
@@ -40,7 +40,7 @@ if ($_REQUEST['action'] === 'clear_art') {
if (!$user->has_access('25')) { access_denied(); }
$album = new Album($_REQUEST['album_id']);
$album->clear_art();
- show_confirmation(_("Album Art Cleared"),_("Album Art information has been removed form the database"),"/albums.php?action=show&album=" . $album->id);
+ show_confirmation(_("Album Art Cleared"),_("Album Art information has been removed form the database"),"/albums.php?action=show&amp;album=" . $album->id);
} // clear_art
// if we have album
@@ -74,8 +74,8 @@ elseif ($_REQUEST['action'] === 'find_art') {
$album = new Album($_REQUEST['album_id']);
$result = $album->find_art($_REQUEST['cover']);
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 "&nbsp;[ <a href=\"" . conf('web_path') . "/albums.php?action=clear_art&album_id=" . $album->id . "\">Reset Album Art</a> ]";
+ 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&amp;album=" . $album->id);
+ echo "&nbsp;[ <a href=\"" . conf('web_path') . "/albums.php?action=clear_art&amp;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 "Enter URL to album art ";
@@ -86,7 +86,7 @@ elseif ($_REQUEST['action'] === 'find_art') {
echo "</form>";
}
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);
+ 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&amp;album=" . $album->id);
echo "<p><form name=\"cover\" method=\"get\" action=\"".$_SERVER['PHP_SELF']."\">";
echo "Enter URL to album art ";
echo "<input type=\"text\" size=\"40\" id=\"cover\" name=\"cover\" value=\"\" />";