diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-20 14:47:42 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-06-24 16:29:59 +0200 |
commit | c223bee6df33b3208dbb5a7c46dbeb98eccf10ac (patch) | |
tree | f2c77ec0c7c28d82ffd3f1c0a69bd3e050e58746 | |
parent | 88fc410c1936510b84497b677248cd20db9fd87f (diff) | |
download | nextcloud-server-c223bee6df33b3208dbb5a7c46dbeb98eccf10ac.tar.gz nextcloud-server-c223bee6df33b3208dbb5a7c46dbeb98eccf10ac.zip |
fix numRows usage in core lib
-rw-r--r-- | lib/connector/sabre/locks.php | 2 | ||||
-rw-r--r-- | lib/vcategories.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/connector/sabre/locks.php b/lib/connector/sabre/locks.php index cbc495dec19..e057b059947 100644 --- a/lib/connector/sabre/locks.php +++ b/lib/connector/sabre/locks.php @@ -178,7 +178,7 @@ class OC_Connector_Sabre_Locks extends Sabre_DAV_Locks_Backend_Abstract { $sql = 'DELETE FROM `*PREFIX*locks` WHERE `userid` = ? AND `uri` = ? AND `token` = ?'; $result = OC_DB::executeAudited( $sql, array(OC_User::getUser(), $uri, $lockInfo->token)); - return $result->numRows() === 1; + return $result === 1; } diff --git a/lib/vcategories.php b/lib/vcategories.php index 7bac6e7d4e3..84036958359 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -125,7 +125,7 @@ class OC_VCategories { OC_Log::write('core', __METHOD__. 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } - return ($result->numRows() == 0); + return ($result->numRows() === 0); } catch(Exception $e) { OCP\Util::writeLog('core', __METHOD__.', exception: '.$e->getMessage(), OCP\Util::ERROR); |