diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-10-22 15:41:00 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-10-22 15:41:00 +0200 |
commit | b5817dcc2e7a531bbd1548b4486d07be5ffdf12f (patch) | |
tree | 5b1abcf4afda63ad58b9f279fa2ccafa73ed18b5 /lib/vcategories.php | |
parent | 273fdb7b642b79b1d1b0d6abb31d684b6f2ed66f (diff) | |
download | nextcloud-server-b5817dcc2e7a531bbd1548b4486d07be5ffdf12f.tar.gz nextcloud-server-b5817dcc2e7a531bbd1548b4486d07be5ffdf12f.zip |
Added missing backtick to sql query.
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 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); |