diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-03-30 18:53:22 -0700 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-03-30 18:53:22 -0700 |
commit | ab40634f336a1f74305b9419859b2d9989459434 (patch) | |
tree | d7c1e05fbe68086de9ccf5028d0f39314d61b352 /core | |
parent | cfd8b911b64512e654d9db43c3b8844e2badf8dd (diff) | |
parent | 7f74f08808ef37be86c71b0c52e511aa55fe5e49 (diff) | |
download | nextcloud-server-ab40634f336a1f74305b9419859b2d9989459434.tar.gz nextcloud-server-ab40634f336a1f74305b9419859b2d9989459434.zip |
Merge pull request #2622 from Kondou-ger/add_missing_backticks
Add (two) missing backticks.
Diffstat (limited to 'core')
-rw-r--r-- | core/ajax/update.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ajax/update.php b/core/ajax/update.php index e40d0def4e4..31b8c0dbb65 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -37,8 +37,8 @@ if (OC::checkUpgrade(false)) { */ function __doFileCacheUpgrade($watcher) { $query = \OC_DB::prepare(' - SELECT DISTINCT user - FROM`*PREFIX*fscache` + SELECT DISTINCT `user` + FROM `*PREFIX*fscache` '); $result = $query->execute(); $users = $result->fetchAll(); |