public.php 339 B

12345678910111213141516
  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);
  11. $app=$parts[2];
  12. OC_App::loadApp($app);
  13. require_once(OC::$APPSROOT . $file);