diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-08-25 01:52:27 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2012-08-25 01:52:27 +0200 |
commit | fa3497f6ed54b6de16dc44ae94721f00b5d5fc6b (patch) | |
tree | 7b3a6c1b946273ee0f1f3f6ade1f9cd3483004dc /apps/files_sharing_log/index.php | |
parent | fd5af9aff4245127f32f3b90dbd6e52792984447 (diff) | |
download | nextcloud-server-fa3497f6ed54b6de16dc44ae94721f00b5d5fc6b.tar.gz nextcloud-server-fa3497f6ed54b6de16dc44ae94721f00b5d5fc6b.zip |
add backticks to SQL, use limit parameter instead of LIMIT SQL
Diffstat (limited to 'apps/files_sharing_log/index.php')
-rw-r--r-- | apps/files_sharing_log/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing_log/index.php b/apps/files_sharing_log/index.php index ffacbdd8604..8d05e3fbd0a 100644 --- a/apps/files_sharing_log/index.php +++ b/apps/files_sharing_log/index.php @@ -13,7 +13,7 @@ OCP\App::setActiveNavigationEntry('files_sharing_log_index'); OCP\Util::addStyle('files_sharing_log', 'style'); -$query = OCP\DB::prepare('SELECT * FROM *PREFIX*sharing_log WHERE user_id = ?'); +$query = OCP\DB::prepare('SELECT * FROM `*PREFIX*sharing_log` WHERE `user_id` = ?'); $log = $query->execute(array(OCP\User::getUser()))->fetchAll(); $output = new OCP\Template('files_sharing_log', 'index', 'user'); |