From 398fbe7b82c556df29636bf62291b165e4fd3b4f Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind@owncloud.com>
Date: Wed, 8 Feb 2012 21:25:20 +0100
Subject: [PATCH] use fetchRow instead of fetch

---
 lib/filecache.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/filecache.php b/lib/filecache.php
index a053e4cbc1..a46f915e55 100644
--- a/lib/filecache.php
+++ b/lib/filecache.php
@@ -304,7 +304,7 @@ class OC_FileCache{
 				$parent=self::getFileId($fullPath);
 				$query=OC_DB::prepare('SELECT size FROM *PREFIX*fscache WHERE parent=?');
 				$query->execute(array($parent));
-				while($row=$query->fetch()){
+				while($row=$query->fetchRow()){
 					$size+=$row['size'];
 				}
 				$mtime=$view->filemtime($path);
@@ -331,7 +331,7 @@ class OC_FileCache{
 		}
 		$query=OC_DB::prepare('SELECT size FROM *PREFIX*fscache WHERE path=?');
 		$query->execute(array($path));
-		if($row=$query->fetch()){
+		if($row=$query->fetchRow()){
 			return $row['size'];
 		}else{//file not in cache
 			return 0;
@@ -518,7 +518,7 @@ class OC_FileCache{
 		$path=$root.$path;
 		$query=OC_DB::prepare('SELECT mtime FROM *PREFIX*fscache WHERE path=?');
 		$query->execute(array($path));
-		if($row=$query->fetch()){
+		if($row=$query->fetchRow()){
 			$cachedMTime=$row['mtime'];
 			return ($mtime>$cachedMTime);
 		}else{//file not in cache, so it has to be updated
@@ -557,7 +557,7 @@ class OC_FileCache{
 		$parent=self::getFileId($view->getRoot().$path);
 		$query=OC_DB::prepare('SELECT name FROM *PREFIX*fscache WHERE parent=?');
 		$result=$query->execute(array($parent));
-		while($row=$result->fetch()){
+		while($row=$result->fetchRow()){
 			$file=$path.'/'.$row['name'];
 			if(!$view->file_exists($file)){
 				if(!$root){//filesystem hooks are only valid for the default root
-- 
GitLab