]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fixed 2 parser errors.
authorRoland Haeder <roland@mxchange.org>
Wed, 25 Feb 2015 13:30:11 +0000 (14:30 +0100)
committerRoland Haeder <roland@mxchange.org>
Wed, 25 Feb 2015 13:30:11 +0000 (14:30 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
lib/imagefile.php

index 6a69238bd612435a1b700bcbdbefa146c5f31257..e298b848aa8a498567d6921bf08eff12204d8e5c 100644 (file)
@@ -257,7 +257,7 @@ class ImageFile
                 @copy($this->filepath, $outpath);
 
                 // And set chmod
-                @chmod($outpath, common_config('attachments', 'chmod');
+                @chmod($outpath, common_config('attachments', 'chmod'));
                 return $outpath;
             } elseif (abs($this->rotate) == 90) {
                 // Box is rotated 90 degrees in either direction,
@@ -357,7 +357,7 @@ class ImageFile
         }
 
         // Always chmod 0644 (default) to have other processes (e.g. queue daemon read it)
-        @chmod($outpath, common_config('attachments', 'chmod');
+        @chmod($outpath, common_config('attachments', 'chmod'));
 
         imagedestroy($image_src);
         imagedestroy($image_dest);