[20946] Fix a typo
Caeies <[email protected]> Wed, 13 Jan 2010 18:25:16 +0000
| Newsgroups | gmane.comp.web.phpgroupware.cvs |
|---|---|
| Message-ID | <[email protected]> |
Revision: 20946
http://svn.sv.gnu.org/viewvc/?view=rev&root=phpgroupware&revision=20946
Author: Caeies
Date: 2010-01-13 18:25:16 +0000 (Wed, 13 Jan 2010)
Log Message:
-----------
Fix a typo
Modified Paths:
--------------
modules/phpgwapi/trunk/inc/class.http_dav_client.inc.php
Modified: modules/phpgwapi/trunk/inc/class.http_dav_client.inc.php
===================================================================
--- modules/phpgwapi/trunk/inc/class.http_dav_client.inc.php 2010-01-13 18:24:52 UTC (rev 20945)
+++ modules/phpgwapi/trunk/inc/class.http_dav_client.inc.php 2010-01-13 18:25:16 UTC (rev 20946)
@@ -678,7 +678,7 @@
if (strlen($token))
{
- $this->http_client->addHeader('If', '<'.$uri.'>'.' (<'.$token.'>)');
+ $this->http_client->addHeader('If', '<'.$srcUri.'>'.' (<'.$token.'>)');
}
$result = $this->http_client->Copy( $srcUri, $destUri, $overwrite, $scope);
$this->http_client->removeHeader('If');
@@ -711,7 +711,7 @@
$this->delete_uri_in_cache($destUri);
if (strlen($token))
{
- $this->http_client->addHeader('If', '<'.$uri.'>'.' (<'.$token.'>)');
+ $this->http_client->addHeader('If', '<'.$srcUri.'>'.' (<'.$token.'>)');
}
$result = $this->http_client->Move( $srcUri, $destUri, $overwrite, $scope);
$this->http_client->removeHeader('If');