property (which is also URL * encoded), but the tag of the response to determine the displayed * resource names. It expects the content to be un-encoded. * * This method calls the parent method and replaces the content of all * elements in the DOM tree. * * @param ezcWebdavPropFindResponse $response * @return ezcWebdavXmlDisplayInformation */ protected function processPropFindResponse( ezcWebdavPropFindResponse $response ) { $xmlDisplayInfo = parent::processPropFindResponse( $response ); $hrefElements = $xmlDisplayInfo->body->getElementsByTagName( 'href' ); foreach ( $hrefElements as $href ) { $href->nodeValue = urldecode( $href->nodeValue ); } return $xmlDisplayInfo; } } ?>