2012-05-07 09:39:17 -04:00
|
|
|
<?php
|
2012-05-13 18:28:22 -04:00
|
|
|
$RUNTIME_NOAPPS = TRUE;
|
2012-05-07 09: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-13 18:28:22 -04:00
|
|
|
|
2012-06-04 16:37:00 -04:00
|
|
|
$parts=explode('/',$file,2);
|
|
|
|
|
$app=$parts[0];
|
2012-07-13 16:44:35 -04:00
|
|
|
|
2012-06-26 16:24:16 -04:00
|
|
|
OC_Util::checkAppEnabled($app);
|
2012-05-13 18:28:22 -04:00
|
|
|
OC_App::loadApp($app);
|
|
|
|
|
|
2012-06-04 16:37:00 -04:00
|
|
|
require_once(OC_App::getAppPath($app) .'/'. $parts[1]);
|