remove dangling AND in SQL statement
This commit is contained in:
parent
d991a9372b
commit
78678be2b6
1 changed files with 1 additions and 1 deletions
|
@ -554,7 +554,7 @@ class OC_VCategories {
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
$stmt = OCP\DB::prepare('DELETE FROM `' . self::CATEGORY_TABLE . '` '
|
$stmt = OCP\DB::prepare('DELETE FROM `' . self::CATEGORY_TABLE . '` '
|
||||||
. 'WHERE `uid` = ? AND');
|
. 'WHERE `uid` = ?');
|
||||||
$result = $stmt->execute(array($arguments['uid']));
|
$result = $stmt->execute(array($arguments['uid']));
|
||||||
if (OC_DB::isError($result)) {
|
if (OC_DB::isError($result)) {
|
||||||
OC_Log::write('core', __METHOD__. 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR);
|
OC_Log::write('core', __METHOD__. 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR);
|
||||||
|
|
Loading…
Reference in a new issue