diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-26 20:48:01 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-26 20:48:01 +0100 |
commit | 4a26d638673ab3745108dd4254f71777f76ea154 (patch) | |
tree | 383569846d5fa6f66181b2e8de7b1294c8bc24e1 /lib/user.php | |
parent | 7eec31567fd699f3fac10c5d5bb5311874b235f1 (diff) | |
download | nextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.tar.gz nextcloud-server-4a26d638673ab3745108dd4254f71777f76ea154.zip |
Fix using wrong quotes for breaking long lines
Fixes #1925
Diffstat (limited to 'lib/user.php')
-rw-r--r-- | lib/user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/user.php b/lib/user.php index 16f6d2787cb..f84aa8fad83 100644 --- a/lib/user.php +++ b/lib/user.php @@ -589,8 +589,8 @@ class OC_User { * @param string $userid */ public static function enableUser($userid) { - $sql = "DELETE FROM `*PREFIX*preferences`' - .' WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?"; + $sql = 'DELETE FROM `*PREFIX*preferences`' + ." WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?"; $stmt = OC_DB::prepare($sql); if ( ! OC_DB::isError($stmt) ) { $result = $stmt->execute(array($userid, 'core', 'enabled', 'false')); |