diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-18 16:18:19 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-18 16:18:19 +0200 |
commit | 78678be2b61f4510460d9876b0be34a4d1dc8113 (patch) | |
tree | 644fd6c9d871b000dda0c388877bf131bd536916 /lib/vcategories.php | |
parent | d991a9372b69871483d59e2257b5f8bb621a5503 (diff) | |
download | nextcloud-server-78678be2b61f4510460d9876b0be34a4d1dc8113.tar.gz nextcloud-server-78678be2b61f4510460d9876b0be34a4d1dc8113.zip |
remove dangling AND in SQL statement
Diffstat (limited to 'lib/vcategories.php')
-rw-r--r-- | lib/vcategories.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vcategories.php b/lib/vcategories.php index 91c72d5dfae..7bac6e7d4e3 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -554,7 +554,7 @@ class OC_VCategories { } try { $stmt = OCP\DB::prepare('DELETE FROM `' . self::CATEGORY_TABLE . '` ' - . 'WHERE `uid` = ? AND'); + . 'WHERE `uid` = ?'); $result = $stmt->execute(array($arguments['uid'])); if (OC_DB::isError($result)) { OC_Log::write('core', __METHOD__. 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR); |