Update remote.php

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

View File

@ -1,6 +1,6 @@
<?php <?php
$RUNTIME_NOAPPS = TRUE; $RUNTIME_NOAPPS = TRUE;
require_once('lib/base.php'); require_once 'lib/base.php';
$path_info = OC_Request::getPathInfo(); $path_info = OC_Request::getPathInfo();
if ($path_info === false || $path_info === '') { if ($path_info === false || $path_info === '') {
OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND); OC_Response::setStatus(OC_Response::STATUS_NOT_FOUND);
@ -33,4 +33,4 @@ switch ($app) {
break; break;
} }
$baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/'; $baseuri = OC::$WEBROOT . '/remote.php/'.$service.'/';
require_once($file); require_once $file;