From 040683b700991bb947dc99fae848d8ed8a13da69 Mon Sep 17 00:00:00 2001 From: paul Date: Thu, 23 Nov 2006 07:13:41 +0000 Subject: [PATCH] Get rid of unneeded data copying ( = = someFunction()). --- .../src/modules/storageServer/var/Restore.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/campcaster/src/modules/storageServer/var/Restore.php b/campcaster/src/modules/storageServer/var/Restore.php index 8cd3ac33e..3ae90e102 100644 --- a/campcaster/src/modules/storageServer/var/Restore.php +++ b/campcaster/src/modules/storageServer/var/Restore.php @@ -264,11 +264,11 @@ class Restore { $tree = XmlParser::parse($file); $mediaFileLP = str_replace('.xml','',$file); $mediaFileLP = ($type=='audioClip' && is_file($mediaFileLP))?$mediaFileLP:''; - $ex = $r = $this->gb->existsFile($this->sessid,$gunid); - if (PEAR::isError($r)) { + $ex = $this->gb->existsFile($this->sessid,$gunid); + if (PEAR::isError($ex)) { $this->addLogItem("-E- ".date("Ymd-H:i:s"). " addFileToStorage - existsFile($gunid) ". - "(".$r->getMessage()."/".$r->getUserInfo().")\n" + "(".$ex->getMessage()."/".$ex->getUserInfo().")\n" ); } if (!PEAR::isError($ex) && $ex) { // file is exists in storage server @@ -325,13 +325,13 @@ class Restore { return $put; } } - $ac = $r = StoredFile::recallByGunid($this->gb, $gunid); - if (PEAR::isError($r)) { - return $r; + $ac = StoredFile::recallByGunid($this->gb, $gunid); + if (PEAR::isError($ac)) { + return $ac; } - $res = $r = $ac->setState('ready'); - if (PEAR::isError($r)) { - return $r; + $res = $ac->setState('ready'); + if (PEAR::isError($res)) { + return $res; } return true; }