summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--browse.php2
-rwxr-xr-xdocs/CHANGELOG1
-rw-r--r--lib/class/song.class.php1
3 files changed, 3 insertions, 1 deletions
diff --git a/browse.php b/browse.php
index 71d4fe2f..6309e2f6 100644
--- a/browse.php
+++ b/browse.php
@@ -138,7 +138,7 @@ switch($action) {
if ($view->base_sql) {
$songs = $song->get_songs($view->sql);
- show_songs($songs);
+ show_songs($songs,0,0);
}
break;
case 'catalog':
diff --git a/docs/CHANGELOG b/docs/CHANGELOG
index 6865d4fe..a955ff84 100755
--- a/docs/CHANGELOG
+++ b/docs/CHANGELOG
@@ -4,6 +4,7 @@
--------------------------------------------------------------------------
v.3.3.3-Alpha2
+ - Fixed Show All of Song Titles not having any data
- Fixed override of local_length to 9000 regardless of config file
- Tweaked Remeber Me Checkbox to be disabled if remember_length
is <= local_length
diff --git a/lib/class/song.class.php b/lib/class/song.class.php
index 69a7b9a6..c986daa1 100644
--- a/lib/class/song.class.php
+++ b/lib/class/song.class.php
@@ -823,6 +823,7 @@ class Song {
function get_sql_from_match($match) {
switch ($match) {
+ case 'Show_all':
case 'Show_All':
case 'show_all':
$sql = "SELECT id FROM song";