Welcome to mirror list, hosted at ThFree Co, Russian Federation.

remote.php « media « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01add42b31545610031007f953cb859ccbd2844d (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::$APPSROOT . '/apps/media/index.php');
}else{
	require_once(OC::$APPSROOT . '/apps/media/server/xml.server.php');
}