Codestyle: FunctionCallArgumentSpacing
This commit is contained in:
parent
ff5f9370c4
commit
36d0d75901
|
@ -87,7 +87,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size);
|
|||
|
||||
$freeSpace=OC_Filesystem::free_space('/');
|
||||
$freeSpace=max($freeSpace,0);
|
||||
$maxUploadFilesize = min($maxUploadFilesize ,$freeSpace);
|
||||
$maxUploadFilesize = min($maxUploadFilesize, $freeSpace);
|
||||
|
||||
$permissions = OCP\Share::PERMISSION_READ;
|
||||
if (OC_Filesystem::isUpdatable($dir.'/')) {
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<?php if (isset($_['folder'])): ?>
|
||||
<?php echo $_['folder']; ?>
|
||||
<?php else: ?>
|
||||
<?php if (substr($_['mimetype'], 0 , strpos($_['mimetype'], '/')) == 'image'): ?>
|
||||
<?php if (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'image'): ?>
|
||||
<div id="imgframe">
|
||||
<img src="<?php echo $_['downloadURL']; ?>" />
|
||||
</div>
|
||||
|
|
|
@ -51,7 +51,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
|
|||
$url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url;
|
||||
$headers = get_headers($url);
|
||||
if($headers==false) {
|
||||
OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ' ,3);
|
||||
OC_Log::write('OC_USER_WEBDAVAUTH', 'Not possible to connect to WebDAV Url: "'.$this->webdavauth_url.'" ', 3);
|
||||
return false;
|
||||
|
||||
}
|
||||
|
|
|
@ -549,7 +549,7 @@ class OC_App{
|
|||
|
||||
foreach ( OC::$APPSROOTS as $apps_dir ) {
|
||||
if(! is_readable($apps_dir['path'])) {
|
||||
OC_Log::write('core', 'unable to read app folder : ' .$apps_dir['path'] , OC_Log::WARN);
|
||||
OC_Log::write('core', 'unable to read app folder : ' .$apps_dir['path'], OC_Log::WARN);
|
||||
continue;
|
||||
}
|
||||
$dh = opendir( $apps_dir['path'] );
|
||||
|
|
Loading…
Reference in New Issue