From 5a738380f6a9b5b254890830ad7ee9517eee19b3 Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Wed, 31 Oct 2012 20:06:39 +0100 Subject: [PATCH] Cast object ids to integers. --- lib/vcategories.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vcategories.php b/lib/vcategories.php index 116c1d1cd9..ee7c7c8ab1 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -197,7 +197,7 @@ class OC_VCategories { if(!is_null($result)) { while( $row = $result->fetchRow()) { - $ids[] = $row['objid']; + $ids[] = (int)$row['objid']; } } //OCP\Util::writeLog('core', __METHOD__.', count: ' . count($items), OCP\Util::DEBUG); @@ -565,7 +565,7 @@ class OC_VCategories { * @param int|string $category The id or name of the category * @param string $type The type of object (event/contact/task/journal). * Defaults to the type set in the instance - * @returns boolean + * @returns boolean Returns false on database error. */ public function addToCategory($objid, $category, $type = null) { $type = is_null($type) ? $this->type : $type;