diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-11-14 20:49:49 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-11-14 20:49:49 +0000 |
commit | d5194388a29b3c6caf3301e342c9e5c71b8ca558 (patch) | |
tree | a79318614b8ca8b1b8bc399bfe8578a9cc41e22f /albums.php | |
parent | 9862fe72c653abef13344690b43a4aab24508a19 (diff) | |
download | ampache-d5194388a29b3c6caf3301e342c9e5c71b8ca558.tar.gz ampache-d5194388a29b3c6caf3301e342c9e5c71b8ca558.tar.bz2 ampache-d5194388a29b3c6caf3301e342c9e5c71b8ca558.zip |
fix typo
Diffstat (limited to 'albums.php')
-rw-r--r-- | albums.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -36,7 +36,7 @@ switch ($_REQUEST['action']) { // we didn't find anything if (empty($_FILES['file']['tmp_name'])) { - show_confirmation(_('Album Art Not Located'),_('Album Art could not be located at this time. This may be due to write access error, or the file is not received corectly.'),"/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 write access error, or the file is not received correctly.'),"/albums.php?action=show&album=" . $album->id); break; } @@ -53,7 +53,7 @@ switch ($_REQUEST['action']) { } // Else it failed else { - show_confirmation(_('Album Art Not Located'),_('Album Art could not be located at this time. This may be due to write access error, or the file is not received corectly.'),"/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 write access error, or the file is not received correctly.'),"/albums.php?action=show&album=" . $album->id); } break; @@ -126,7 +126,7 @@ switch ($_REQUEST['action']) { } // Else nothing else { - show_confirmation(_('Album Art Not Located'),_('Album Art could not be located at this time. This may be due to write access error, or the file is not received corectly.'),"/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 write access error, or the file is not received correctly.'),"/albums.php?action=show&album=" . $album->id); } $albumname = $album->name; |