2012-05-07 17:39:17 +04:00
|
|
|
<?php
|
|
|
|
$RUNTIME_NOSETUPFS = true;
|
2012-05-14 02:28:22 +04:00
|
|
|
$RUNTIME_NOAPPS = TRUE;
|
2012-05-07 17:39:17 +04:00
|
|
|
require_once('lib/base.php');
|
|
|
|
$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
|
|
|
|
if(is_null($file)){
|
|
|
|
header('HTTP/1.0 404 Not Found');
|
|
|
|
exit;
|
|
|
|
}
|
2012-05-14 02:28:22 +04:00
|
|
|
|
2012-06-05 00:37:00 +04:00
|
|
|
$parts=explode('/',$file,2);
|
|
|
|
$app=$parts[0];
|
2012-06-27 00:24:16 +04:00
|
|
|
OC_Util::checkAppEnabled($app);
|
2012-05-14 02:28:22 +04:00
|
|
|
OC_App::loadApp($app);
|
|
|
|
|
2012-06-05 00:37:00 +04:00
|
|
|
require_once(OC_App::getAppPath($app) .'/'. $parts[1]);
|