]> source.dussan.org Git - nextcloud-server.git/commitdiff
Codestyle: FunctionCallArgumentSpacing
authorFelix Moeller <mail@felixmoeller.de>
Tue, 23 Oct 2012 06:35:54 +0000 (08:35 +0200)
committerFelix Moeller <mail@felixmoeller.de>
Tue, 23 Oct 2012 06:35:54 +0000 (08:35 +0200)
apps/files/index.php
apps/files_sharing/templates/public.php
apps/user_webdavauth/user_webdavauth.php
lib/app.php

index 493087d26f1155eaaab65869d2c94f7ff1520867..4d169757cc71cb7b1946942e2e4e8753c802506d 100644 (file)
@@ -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.'/')) {
index ef81e296d822f9a3a3770d54293e315ce9350cc2..35cca7c42dc9c2832c5b3923fdc681d3ddfed6f8 100644 (file)
@@ -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>
index c36d37c1fa2ef892aa77e82f8a7513e04add3703..bd9f45d357b98c1f053ae15655dbbfbf6caee157 100755 (executable)
@@ -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;
 
                }
index 2319c50950ec8a77b8dada76053509bf5a4f4853..28757735e04daaa81022f406e645efa93fa5bf4b 100755 (executable)
@@ -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'] );