summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-23 15:07:14 -0700
committerLukas Reschke <lukas@statuscode.ch>2012-10-23 15:07:14 -0700
commitf112d8cd69ed7080b5bba6ad259cb77802e49f56 (patch)
tree90308bee0b447f2daf1b6a545b023178f6e0544f /apps
parent9185cd5daef7babd748dec9f15b9b3f3ce90207c (diff)
parent2d61f0345297a92d23751d3228b74c6dca94d1e5 (diff)
downloadnextcloud-server-f112d8cd69ed7080b5bba6ad259cb77802e49f56.tar.gz
nextcloud-server-f112d8cd69ed7080b5bba6ad259cb77802e49f56.zip
Merge pull request #75 from fmms/master
More Checkstyle cleanup
Diffstat (limited to 'apps')
-rw-r--r--apps/files_encryption/lib/crypt.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php
index 38d8edf28c3..d057c1ed194 100644
--- a/apps/files_encryption/lib/crypt.php
+++ b/apps/files_encryption/lib/crypt.php
@@ -151,7 +151,7 @@ class OC_Crypt {
*/
public static function encryptFile( $source, $target, $key='') {
$handleread = fopen($source, "rb");
- if($handleread!=FALSE) {
+ if($handleread!=false) {
$handlewrite = fopen($target, "wb");
while (!feof($handleread)) {
$content = fread($handleread, 8192);
@@ -174,7 +174,7 @@ class OC_Crypt {
*/
public static function decryptFile( $source, $target, $key='') {
$handleread = fopen($source, "rb");
- if($handleread!=FALSE) {
+ if($handleread!=false) {
$handlewrite = fopen($target, "wb");
while (!feof($handleread)) {
$content = fread($handleread, 8192);