Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-10-22 17:41:00 +0400
committerThomas Tanghus <thomas@tanghus.net>2012-10-22 17:41:00 +0400
commitb5817dcc2e7a531bbd1548b4486d07be5ffdf12f (patch)
tree5b1abcf4afda63ad58b9f279fa2ccafa73ed18b5 /lib/vcategories.php
parent273fdb7b642b79b1d1b0d6abb31d684b6f2ed66f (diff)
Added missing backtick to sql query.
Diffstat (limited to 'lib/vcategories.php')
-rw-r--r--lib/vcategories.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vcategories.php b/lib/vcategories.php
index c220821ecae..607a995cb33 100644
--- a/lib/vcategories.php
+++ b/lib/vcategories.php
@@ -184,7 +184,7 @@ class OC_VCategories {
$ids = array();
$sql = 'SELECT `objid` FROM `' . self::RELATION_TABLE
- . ' WHERE `categoryid` = ?';
+ . '` WHERE `categoryid` = ?';
try {
$stmt = OCP\DB::prepare($sql);