Update public.php

respect coding style
This commit is contained in:
Thomas Müller 2012-09-04 12:10:26 +03:00
parent 08edb5dc58
commit cfa2fded05
1 changed files with 4 additions and 4 deletions

View File

@ -1,20 +1,20 @@
<?php <?php
$RUNTIME_NOAPPS = TRUE; $RUNTIME_NOAPPS = TRUE;
require_once('lib/base.php'); require_once 'lib/base.php';
if (!isset($_GET['service'])) { if (!isset($_GET['service'])) {
header('HTTP/1.0 404 Not Found'); header('HTTP/1.0 404 Not Found');
exit; exit;
} }
$file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service'])); $file = OCP\CONFIG::getAppValue('core', 'public_' . strip_tags($_GET['service']));
if(is_null($file)){ if(is_null($file)) {
header('HTTP/1.0 404 Not Found'); header('HTTP/1.0 404 Not Found');
exit; exit;
} }
$parts=explode('/',$file,2); $parts=explode('/', $file, 2);
$app=$parts[0]; $app=$parts[0];
OC_Util::checkAppEnabled($app); OC_Util::checkAppEnabled($app);
OC_App::loadApp($app); OC_App::loadApp($app);
require_once(OC_App::getAppPath($app) .'/'. $parts[1]); require_once OC_App::getAppPath($app) .'/'. $parts[1];