diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-04 05:37:15 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-04 05:37:15 +0000 |
commit | 1068c367ac5ee03fc799773289786863689da5bd (patch) | |
tree | 2df7950b9a110160233e22392526096ac2589550 /artists.php | |
parent | 560dbe70f23b4353b5d98736fb16dd088d4f269a (diff) | |
download | ampache-1068c367ac5ee03fc799773289786863689da5bd.tar.gz ampache-1068c367ac5ee03fc799773289786863689da5bd.tar.bz2 ampache-1068c367ac5ee03fc799773289786863689da5bd.zip |
* Fixed Single Artist view if you have 50+ albums
* Tweaked Recently Played text to make translations a little easier
* Removed unused Config options
* Added array definition if only one users exists
Diffstat (limited to 'artists.php')
-rw-r--r-- | artists.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/artists.php b/artists.php index b84e1ed1..03420e58 100644 --- a/artists.php +++ b/artists.php @@ -60,7 +60,7 @@ switch($action) { if (!$sort_order) { $sort_order = 'album.name'; } $db_results = mysql_query($sql, dbh()); $total_items = mysql_num_rows($db_results); - if ($match != "Show_all") { $offset_limit = $_SESSION['userdata']['offset_limit']; } + $offset_limit = $total_items; $view = new View($sql, 'artists.php',$sort_order,$total_items,$offset_limit); } |