summaryrefslogtreecommitdiffstats
path: root/search.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-31 04:31:42 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2007-07-31 04:31:42 +0000
commit652474071e711585fec6b8495b3f22a927c9672e (patch)
tree38186cbd08376625d484d8f8f99e5b2513520c32 /search.php
parentd48a431606385a618a31eb007b1527c8d8dd075d (diff)
downloadampache-652474071e711585fec6b8495b3f22a927c9672e.tar.gz
ampache-652474071e711585fec6b8495b3f22a927c9672e.tar.bz2
ampache-652474071e711585fec6b8495b3f22a927c9672e.zip
added paging on all song displays
Diffstat (limited to 'search.php')
-rw-r--r--search.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/search.php b/search.php
index a6ef9b64..1781f59a 100644
--- a/search.php
+++ b/search.php
@@ -44,7 +44,10 @@ switch ($_REQUEST['action']) {
require_once Config::get('prefix') . '/templates/show_search.inc.php';
$results = run_search($_REQUEST);
Browse::set_type('song');
+
+ echo "<div id=\"browse_content\">";
Browse::show_objects($results);
+ echo "</div>";
break;
case 'save_as_track':
$playlist_id = save_search($_REQUEST);