summaryrefslogtreecommitdiffstats
path: root/apps/media/remote.php
blob: 0535077cef19bd7a7892332e6d3b0deb63987538 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php

// only need filesystem apps
$RUNTIME_APPTYPES=array('filesystem','authentication');
OC_App::loadApps($RUNTIME_APPTYPES);

if($path_info == '/ampache' || $path_info == '/ampache/'){
	require_once(OC_App::getAppPath('media').'/index.php');
}else{
	require_once(OC_App::getAppPath('media').'/server/xml.server.php');
}