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=OC_Filesystem::free_space('/');
|
||||||
$freeSpace=max($freeSpace,0);
|
$freeSpace=max($freeSpace,0);
|
||||||
$maxUploadFilesize = min($maxUploadFilesize ,$freeSpace);
|
$maxUploadFilesize = min($maxUploadFilesize, $freeSpace);
|
||||||
|
|
||||||
$permissions = OCP\Share::PERMISSION_READ;
|
$permissions = OCP\Share::PERMISSION_READ;
|
||||||
if (OC_Filesystem::isUpdatable($dir.'/')) {
|
if (OC_Filesystem::isUpdatable($dir.'/')) {
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<?php if (isset($_['folder'])): ?>
|
<?php if (isset($_['folder'])): ?>
|
||||||
<?php echo $_['folder']; ?>
|
<?php echo $_['folder']; ?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php if (substr($_['mimetype'], 0 , strpos($_['mimetype'], '/')) == 'image'): ?>
|
<?php if (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'image'): ?>
|
||||||
<div id="imgframe">
|
<div id="imgframe">
|
||||||
<img src="<?php echo $_['downloadURL']; ?>" />
|
<img src="<?php echo $_['downloadURL']; ?>" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -51,7 +51,7 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend {
|
||||||
$url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url;
|
$url= 'http://'.urlencode($uid).':'.urlencode($password).'@'.$this->webdavauth_url;
|
||||||
$headers = get_headers($url);
|
$headers = get_headers($url);
|
||||||
if($headers==false) {
|
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;
|
return false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -549,7 +549,7 @@ class OC_App{
|
||||||
|
|
||||||
foreach ( OC::$APPSROOTS as $apps_dir ) {
|
foreach ( OC::$APPSROOTS as $apps_dir ) {
|
||||||
if(! is_readable($apps_dir['path'])) {
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
$dh = opendir( $apps_dir['path'] );
|
$dh = opendir( $apps_dir['path'] );
|
||||||
|
|
Loading…
Reference in New Issue