diff options
author | Chris Slamar <chris@slamar.org> | 2011-01-24 19:25:01 -0600 |
---|---|---|
committer | Chris Slamar <chris@slamar.org> | 2011-01-24 19:25:01 -0600 |
commit | 4910d13fa4623246db810347def57106dd85c9a9 (patch) | |
tree | 7b57a3c13f70572cde82bd343967dff33b331ae2 /lib/class/browse.class.php | |
parent | fc355baf6764ffb87b74002b3a4419a63dab34b1 (diff) | |
download | ampache-4910d13fa4623246db810347def57106dd85c9a9.tar.gz ampache-4910d13fa4623246db810347def57106dd85c9a9.tar.bz2 ampache-4910d13fa4623246db810347def57106dd85c9a9.zip |
Catalog Filtering Added Bug#60
Diffstat (limited to 'lib/class/browse.class.php')
-rw-r--r-- | lib/class/browse.class.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/class/browse.class.php b/lib/class/browse.class.php index 5feaefde..8e6eba11 100644 --- a/lib/class/browse.class.php +++ b/lib/class/browse.class.php @@ -110,6 +110,8 @@ class Browse extends Query { } elseif ($filter_value = $this->get_filter('starts_with')) { $match = ' (' . $filter_value . ')'; + } elseif ($filter_value = $this->get_filter('catalog')) { + $match = '(' . $filter_value . ')'; } $type = $this->get_type(); |