public.php 392 B

1234567891011121314151617
  1. <?php
  2. $RUNTIME_NOSETUPFS = true;
  3. $RUNTIME_NOAPPS = TRUE;
  4. require_once('lib/base.php');
  5. $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
  6. if(is_null($file)){
  7. header('HTTP/1.0 404 Not Found');
  8. exit;
  9. }
  10. $parts=explode('/',$file,2);
  11. $app=$parts[0];
  12. OC_Util::checkAppEnabled($app);
  13. OC_App::loadApp($app);
  14. require_once(OC_App::getAppPath($app) .'/'. $parts[1]);