diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-06-13 10:11:23 +0200 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-06-13 10:11:23 +0200 |
commit | 77944cf7b861fbe580c119f5471e3783e9a0cea1 (patch) | |
tree | 12629a4f02bd1bf999849a525ae574715e739249 /apps/files_encryption | |
parent | df78085171b8c059bfa12f4b60b9f9433529512a (diff) | |
download | nextcloud-server-77944cf7b861fbe580c119f5471e3783e9a0cea1.tar.gz nextcloud-server-77944cf7b861fbe580c119f5471e3783e9a0cea1.zip |
fix typo in var name
Diffstat (limited to 'apps/files_encryption')
-rw-r--r-- | apps/files_encryption/lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index f6da417c6f9..b6e3543bca7 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1095,7 +1095,7 @@ class Util { $manipulatedRows = $result->numRows(); if ($manipulatedRows === 1) { - $result = true; + $return = true; \OCP\Util::writeLog('Encryption library', "Finish migration successfully for " . $this->userId, \OCP\Util::INFO); } else { \OCP\Util::writeLog('Encryption library', "Could not deactivate migration mode for " . $this->userId, \OCP\Util::WARN); |