diff options
author | Sam Tuke <samtuke@owncloud.com> | 2012-05-31 14:53:52 +0100 |
---|---|---|
committer | Sam Tuke <samtuke@owncloud.com> | 2012-05-31 14:53:52 +0100 |
commit | fc400e06c339f41b25ac5fe158c37c473634f39e (patch) | |
tree | dd4bf4b20719bfd996f1861a2946cebbb04c6fe4 /lib/filesystemview.php | |
parent | 43fcae0409d558cbbbd7571fa731391e20c4b5d9 (diff) | |
download | nextcloud-server-fc400e06c339f41b25ac5fe158c37c473634f39e.tar.gz nextcloud-server-fc400e06c339f41b25ac5fe158c37c473634f39e.zip |
fixed typos in var names
Diffstat (limited to 'lib/filesystemview.php')
-rw-r--r-- | lib/filesystemview.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/filesystemview.php b/lib/filesystemview.php index 105ffb80afb..a55a3a70de8 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -345,7 +345,7 @@ class OC_FilesystemView { */ private function basicOperation($operation,$path,$hooks=array(),$extraParam=null){ if(OC_FileProxy::runPreProxies($operation,$path, $extraParam) and OC_Filesystem::isValidPath($path)){ - $interalPath=$this->getInternalPath($path); + $internalPath=$this->getInternalPath($path); $run=true; if(OC_Filesystem::$loaded and $this->fakeRoot==OC_Filesystem::getRoot()){ foreach($hooks as $hook){ @@ -358,9 +358,9 @@ class OC_FilesystemView { } if($run and $storage=$this->getStorage($path)){ if(!is_null($extraParam)){ - $result=$storage->$operation($interalPath,$extraParam); + $result=$storage->$operation($internalPath,$extraParam); }else{ - $result=$storage->$operation($interalPath); + $result=$storage->$operation($internalPath); } $result=OC_FileProxy::runPostProxies($operation,$path,$result); if(OC_Filesystem::$loaded and $this->fakeRoot==OC_Filesystem::getRoot()){ |