From e86cb84e6692dee84bff3a01c7c6e6b84187d8fd Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 7 Sep 2011 08:41:26 +0000 Subject: [PATCH] % should be encoded, but easily leads to double encoding, therefore better NOT encodig it in egw_vfs::encodePathComponent() --- phpgwapi/inc/class.egw_vfs.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_vfs.inc.php b/phpgwapi/inc/class.egw_vfs.inc.php index b0d02f9990..093c65559d 100644 --- a/phpgwapi/inc/class.egw_vfs.inc.php +++ b/phpgwapi/inc/class.egw_vfs.inc.php @@ -1487,7 +1487,7 @@ class egw_vfs extends vfs_stream_wrapper * @var array */ static public $encode = array( - '%' => '%25', + //'%' => '%25', // % should be encoded, but easily leads to double encoding, therefore better NOT encodig it '#' => '%23', '?' => '%3F', '/' => '', // better remove it completly