1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-04 10:19:25 +02:00

fixed a long standing browsing issue where you could not browse two different things at the same time

This commit is contained in:
Karl 'vollmerk' Vollmer 2008-08-08 05:15:34 +00:00
parent dda0815b08
commit 73e70d7d99
6 changed files with 89 additions and 20 deletions

View file

@ -88,6 +88,15 @@ switch ($_REQUEST['action']) {
$results[$key] = '';
break;
case 'page':
Browse::set_type($_REQUEST['type']);
Browse::set_start($_REQUEST['start']);
ob_start();
Browse::show_objects(false,true);
$results['browse_content'] = ob_get_clean();
break;
default:
$results['rfc3514'] = '0x1';