public.php 366 B

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